Last active
October 1, 2022 21:23
-
-
Save ysaito8015/6fe3c8099b8a4d131bfdb955019e73e7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
options(repos = "https://cran.rstudio.com/") | |
if (!require("pacman")) install.packages("pacman") | |
# isntall linelist | |
pacman::p_load_gh("reconhub/linelist", dependencies = TRUE) | |
# install dsr | |
pacman::p_load_gh("cran/dsr", dependencies = TRUE) | |
# install sf | |
pacman::p_load_gh("r-spatial/sf", dependencies = TRUE) | |
# install BiocManager | |
pacman::p_load(BiocManager) | |
# install Biobase | |
BiocManager::install("Biobase", update = TRUE, ask = FALSE) | |
# install ggtree | |
BiocManager::install("ggtree", update = TRUE, ask = FALSE) | |
# install epicontacts | |
pacman::p_load_gh("reconhub/epicontacts@timeline", dependencies = TRUE) | |
# install sitrep | |
remotes::install_github("r4epi/sitrep") | |
pacman::p_load( | |
bookdown, | |
downlit, | |
xml2, | |
here, | |
dplyr, | |
incidence2, | |
sessioninfo, | |
janitor, | |
skimr, | |
kableExtra | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment