Learn R Programming

just.install (version 1.0.2)

justinstall: simply install packages

Description

Simple utility to install packages from a number of sources. It only install if it not present already. It does not attach any packages, existing or to be installed.

Usage

justinstall(to_install)

Arguments

to_install

tibble or data.frame with packages to install (see vignette for details)

Value

no output

Examples

Run this code
# NOT RUN {
to_install <- tibble::tibble(package=c("tidyverse","ochRe","customthemes"),
                             source=c("CRAN","Github","r-universe"),
                             url=c("","ropenscilabs/ochRe","https://carlosyanez.r-universe.dev"))

just.install::justinstall(to_install)
# }

Run the code above in your browser using DataLab