vmrExec {vmr}R Documentation

Execute R methods into guest machine

Description

Run R method into guest machine.

Usage

vmrExec(cmd = c())

Arguments

cmd

list of R command

Details

call Rscript -e "cmd" into the guest machine from the current vmr environment. Command are independents and do not keep memory of past commands.

Value

NULL

Examples

## Not run: 
cmd <- c("Sys.info()", 'print("Hello World!")')
vmrExec(cmd)

## End(Not run)

[Package vmr version 0.0.6 Index]