rscript_process {callr} | R Documentation |
An Rscript script.R
command that runs in the background. This is an
R6 class that extends the process class.
rp <- rscript_process$new(options)
options
A list of options created via rscript_process_options()
.
rscript_process$new
creates a new instance. Its options
argument is
best created by the rscript_process_options()
function.
## Not run: options <- rscript_process_options(script = "script.R") rp <- rscript_process$new(options) rp$wait() rp$read_output_lines() ## End(Not run)