https://github.com/morgankain/RRV_HostVectorCompetence
Raw File
Tip revision: 19d7b6d57e4b641ffc40eaf34d864428b64c26c6 authored by morgankain on 05 October 2022, 19:41:50 UTC
Some additional comments on run times
Tip revision: 19d7b6d
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