A CRAN-like package repository for previously released R packages originating from this organization.
The following releases are available in this repository:
Set the repository options in R to point to a specific release in this repository:
# Assuming you want to use the 2022_10_13 release
release_date <- "2022_10_13"
options(
repos = c(
insightsengineering = paste0(
"https://insightsengineering.github.io/depository/",
release_date
),
CRAN = "https://cloud.r-project.org/"
)
)Next, assuming you want to install the teal package, simply run this in the R session:
install.packages("teal")Pre-built versions of the releases were added to the corresponding release directory, and the following command was run in R to create a repository.
tools::write_PACKAGES()This repository uses Github Pages to serve packages.