π¦ Manage Your R Packages with Style
evanverse
provides streamlined utility functions for
installing, checking, and updating R packages β including support for
CRAN, Bioconductor, and GitHub.
This vignette walks through:
inst_pkg()
β install packages from any sourcecheck_pkg()
β check if a package is installedupdate_pkg()
β update packages smartly
π Update Packages β update_pkg()
# Update CRAN and Bioconductor packages
update_pkg()
# Update GitHub packages only
update_pkg(pkg = c("evanbio/evanverse", "rstudio/gt"), source = "GitHub")
# Update specific Bioconductor package
update_pkg(pkg = "limma", source = "Bioconductor")