The goal of rrr.workshop is to download learning materials for Reproducible Research in R, as well as to install any required packages. rrr.workshop also allows you to open a given module in Posit Cloud.
You can install the latest version of rrr.workshop with:
options(repos = c(
emptyfieldds = "https://emptyfield-ds.r-universe.dev",
CRAN = "https://cran.rstudio.com/"
))
install.packages("rrr.workshop")use_module() will install the materials for a given module on your
computer. Then, it will open a new RStudio Project containing the files
you’ll need.
rrr.workshop::use_module("module_name")By default, this package downloads the materials to a conspicuous place
like your Desktop. You can also tell use_module() exactly where to put
the materials with destdir:
rrr.workshop::use_module("module_name", destdir = "a/path/on/your/computer")browse_cloud() opens a module in Posit Cloud, where the materials and
all necessary tooling will be pre-installed. This requires an Posit
Cloud account.
rrr.workshop::browse_cloud("module_name")