https://github.com/morgankain/RRV_HostVectorCompetence
Revision db6afd7d73dafe78a400d9098a37b36e283fb6ac authored by morgankain on 26 April 2021, 22:26:42 UTC, committed by morgankain on 26 April 2021, 22:26:42 UTC
1 parent e51b89a
Raw File
Tip revision: db6afd7d73dafe78a400d9098a37b36e283fb6ac authored by morgankain on 26 April 2021, 22:26:42 UTC
cleaning up script names
Tip revision: db6afd7
1_needed_packages.R
## Required packages to run this code
needed_packages <- c(
    "plyr"
  , "dplyr"
  , "ggplot2"
  , "magrittr"
  , "scales"
  , "lme4"
  , "MASS"
  , "tidyr"
  , "rstan"
  , "shinystan"
  , "reshape2"
#  , "foreach"
#  , "doParallel"
#  , "data.table"
#  , "doRNG"
)

## load packages. Install all packages that return "FALSE"
lapply(needed_packages, require, character.only = TRUE)
back to top