The R interfaces are also scriptable using an R connection object. A scriptable R connection object can be obtained using the R Connect() function.
Changes the control options for R. If Async is set to true (1) for R Submit(), this message immediately stops the execution of the R code that was submitted.
Disconnects this R connection.
Returns 1if the R connection is active, 0 otherwise.
Send the specified JMP variable to R.
Returns
0 if successful, nonzero otherwise.
Required Argument
name
A quoted string contains the name of a JMP variable to send to R.
Optional Named Arguments for Data Tables
Selected(Boolean)
If true, sends only the selected rows from the referenced data table to R.
Excluded(Boolean)
If true, sends only the excluded rows from the referenced data table to R.
Labeled(Boolean)
If true, sends only labeled rows from the referenced data table to R.
Hidden(Boolean)
If true, sends only hidden rows from the referenced data table to R.
Colored(Boolean)
If true, sends only colored rows from the referenced data table to R.
Markered(Boolean)
If true, sends only markered rows from the referenced data table to R.
Row States(Boolean, <named arguments>)
Includes a Boolean argument and optional named arguments. Sends row state information from the referenced data table to R by adding an additional data column named “RowState”. The row state value consists of individual settings with the values shown in Table 3.2.
Multiple row states are created by adding together individual settings. |
|
Arguments |
Colors(Boolean) (Optional) If true, sends row colors and adds an additional data column named “RowStateColor”. Markers(Boolean) (Optional) If true, sends row markers and adds an additional data column named “RowStateMarker”. |
Sends the quoted JMP data file to R. The name argument can represent any of the following data types: numeric, quoted string, matrix, list, or data table.
Returns data from R. The name argument can represent any of the following data types: numeric, quoted string, matrix, list, or data table.
Returns
The value of the specified variable.
Arguments
name
Specifies the quoted name of a JMP variable to be retrieved from R.
Gets the last graphics object written to the R graph display window. The graphics object can be returned in different graphic formats.
Returns
A JMP picture object.
Required Argument
type
The format the R graph display window contents are converted to. Valid formats are "png", "bmp", "jpeg", "jpg", "tiff", and "tif".
Submits the quoted R code.
Returns
0 if successful, nonzero otherwise.
Required Argument
code
Specifies the quoted R code to submit.
Optional Named Arguments
Expand(Boolean)
Performs an Eval Insert() on the R code before submitting the code.
Echo(Boolean)
Echoes the R source lines to the JMP log. The default value is true.
Submits statements to R using the file in the quoted path.
Arguments
path
Specifies the quoted path to the file that contains R code to be executed.
Submits the quoted R code to the R connection using the list of inputs. Upon completion, a list of outputs is returned.
Returns
0 if successful, nonzero otherwise.
Required Arguments
R code
Specifies the quoted R code to submit.
{list of inputs}
List of JMP variable names to be sent to R as inputs.
{list of outputs}
List of JMP variable names to be retrieved from R as outputs.
Optional Named Arguments
See rconn<<Submit(R code, Expand(Boolean), Echo(Boolean)) on page 487.
Controls the execution of R.
Returns
Void.
Optional Named Argument
Echo(Boolean)
Echoes the R source lines to the JMP log.
Gets the current version of R that is installed.
Returns
A vector of length 3 containing the R version number.
Maps a quoted JMP Name to its corresponding R Name using R variable name naming rules.
Returns
A quoted string that contains the quoted R name.
Arguments
name
A quoted string that specifies the name of a JMP variable to be sent to R.