Skip to content

Instantly share code, notes, and snippets.

@sysilviakim
Last active January 20, 2021 23:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sysilviakim/bc23a898c1903101df6d5741e4dfb58b to your computer and use it in GitHub Desktop.
Save sysilviakim/bc23a898c1903101df6d5741e4dfb58b to your computer and use it in GitHub Desktop.
Basic project start-up
renv::init()
install.packages("devtools")
install.packages("remotes")
install.packages("colorspace")
library(remotes)
install_github(
"sysilviakim/Kmisc", INSTALL_opts = c("--no-multiarch"), dependencies = TRUE
)
Kmisc::proj_skeleton()
# Install typically used libraries
install.packages("plyr")
install.packages("tidyverse")
install.packages("lubridate")
install.packages("here")
install.packages("assertthat")
install.packages("styler")
renv::snapshot()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment