This will check CRAN and GitHub for updates to MomX packages,
and install them if available. Gracefully handles packages that
don't exist yet.
Usage
momx_update(which = c("core", "extended", "all"), from = c("cran", "github"))
Arguments
- which
Which packages to update? "core" (default), "extended", or "all"
- from
Source to update from: "cran" (default) or "github"
Examples
if (FALSE) { # \dontrun{
momx_update()
momx_update("all")
momx_update(from = "github")
} # }