load {renv} | R Documentation |
Load a project.
load(project = getwd(), quiet = FALSE)
project |
The project directory. If |
quiet |
Boolean; be quiet during load? |
Normally, this is done automatically on session startup by the infrastructure
generated by activate()
– users should not need to call this function
directly.
The project directory, invisibly. Note that this function is normally called for its side effects.
## Not run: # load a project -- note that this is normally done automatically # when the R session is started in an renv project after calling # renv::activate() renv::load() ## End(Not run)