run {renv} | R Documentation |
Run a script
Description
Run an R script, in the context of a project using renv. The script will be run within an R sub-process.
Usage
run(script, ..., job = NULL, name = NULL, project = NULL)
Arguments
script |
The path to an R script. |
... |
Unused arguments, reserved for future expansion. If any arguments
are matched to |
job |
Run the requested script as an RStudio job? Requires a recent
version of both RStudio and the rstudioapi packages. When |
name |
The name to associate with the job, for scripts run as a job. |
project |
The path to the renv project. This project will be loaded
before the requested script is executed. When |
Value
The project directory, invisibly. Note that this function is normally called for its side effects.