I am working on a JSL with R script where I am trying to fetch a resultant table which is formed in a previous script. But I am facing some issues, when I call the table in JSL I am able to access its elements but when I try it using R code in the JSL an error pops up in the log area. It displays that “Data type to be sent to R is not supported”. I think I might be making some mistakes, it would be great if anyone can help me with this issue.
Following code I had written for fetching the data using R in JMP:
Names Default To Here( 1 );
Current Data Table(obj);
//rconn = R Connect();
R Init();
//Current Data Table(obj);
R Send(obj, Selected(1));
R Submit("attributes(obj)");
R Term();