install_latest {easystats} | R Documentation |
Install the easystats suite from R-universe (GitHub) or CRAN
Description
This function can be used to install all the easystats packages, either latest development versions (from R-universe/GitHub) or the current versions from CRAN. If the development versions are installed, packages will be installed from the stable branch (master/main) for each package.
Usage
install_latest(
source = c("development", "cran"),
packages = "all",
force = FALSE,
verbose = TRUE
)
Arguments
source |
Character. Either |
packages |
Character vector, indicating which packages to be installed.
By default, the option |
force |
Logical, if |
verbose |
Toggle messages. |
Value
Invisible NULL
.
Examples
# install latest development-version of easystats packages from
# the r-universe repository, but only those packages that have newer
# versions available
install_latest()
# install all latest development-version of easystats packages from
# the r-universe repository, no matter whether local installations
# are up to date or not.
install_latest(force = TRUE)