An optional, Boolean, named argument. Performs an Eval Insert() on the R code before submitting to R.
x = [1 2 3];
y = [4 5 6];
rc = R Execute( {x, y}, {z}, "z <- x * y" );
// Get the R variable qbx and placed it into a JMP variable qbx
qbx = R Get( qbx );
 
// Get the R variable df and placed it into a JMP data table referenced by df
df = R Get( df );
	R Send(Here:x, R Name("localx"))
The named arguments for the Row States() argument are as follows:
X = [1 2 3];
rc = R Send( X );
Open a data table, assign a reference to it (dt), and send the data table, along with its current row states, to R:
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
rc = R Send( dt, Row States(1) );
An optional, Boolean, named argument. Performs an Eval Insert() on the R code before submitting to R.
An optional, Boolean, named argument. If set to true (1), the submit can be canceled either by pressing the ESCAPE key, or by using this message to an R connection: rconn<<Control( Interrupt( 1 ) ). False (0) is the default value.
rc = R Submit("\[
	x <- rnorm(5)
	print(x)
	y <- rnorm(5)
	print(y)
	z = plot(x, y)
]\" );

Help created on 7/12/2018