This will check to see if all SticsRPacks packages are up-to-date, and install the desired version if not.
SticsRPacks_update(
ref = list(SticsRFiles = NULL, CroptimizR = NULL, SticsOnR = NULL, CroPlotR = NULL)
)
Arguments
- ref
The desired git reference. Could be a commit, tag, or branch name. Defaults to NULL
for the latest release of the package.
Examples
if (FALSE) { # \dontrun{
# Use the latest release:
SticsRPacks_update()
# Using a particular commit for one:
SticsRPacks_update(ref = list(SticsRFiles= "42f9333e1b1c336cf431e2e33dc13caa994a3ae9"))
# Or a version:
SticsRPacks_update(ref = list(SticsRFiles= "v0.1.0.9003"))
} # }