https://github.com/morgankain/RRV_HostVectorCompetence
Raw File
Tip revision: 23436d0439ee523b05b8aa913d30b244bdfee9d5 authored by Morgan Kain on 25 May 2021, 16:20:33 UTC
LICENSE added for eLife submission
Tip revision: 23436d0
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