On Windows, if you want to record output to the graphics window, send the following R code using R Submit( ).
R Init();
R Send( X );
R Submit( "class(X)" );
R Submit( "Y<-unlist(X)
class(Y)" );
R Term();
In the following example, the list that is created in R has two elements named x and y that are created using the List() function of R. When your bring the R list into JMP and then send it back to R, the names are lost. Therefore in R, you cannot access the first matrix using pts$x. Instead, you must use the index using pts[[1]].
R Init();
R Submit("
");
JMP_pts = R Get( pts );
R Send( JMP_pts );
R Submit("
");
R Term();