A package that provides functions for maintaining package libraries. Written because I wasn't satisfied with current offerings (packrat, checkpoint). It's intended to work with the Southwick R-Setup.
As of Feb 2020, I consider this approach deprecated. I recommend package renv.
You can migrate the saproj settings for an existing project over to renv:
# arhive the saproj tracking files
project_directory <- "E:/SA/Projects/Data-Dashboards/SC/2019-q4"
saproj::archive_saproj(project_directory)
# open .Rproj in the project_directory & setup packages in renv
renv::init(bare = TRUE)
renv::install("southwick-associates/saproj")
saproj::install_saproj_packages()
renv::snapshot()
From the R console:
install.packages("remotes")
remotes::install_github("southwick-associates/saproj")
See vignette("saproj-intro")
for a guide.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.