Is there a bug in "R Get()" for a list?
With my version of JMP (17.0.0) and R (4.2.2), I cannot get list variables back from R with the command "R Get()". I find the error message:
Error: Error in if (is.na(datam)) { : the condition has length > 1
Unexpected errors occurred while attempting to transfer the data.
Get data for "x1" failedHere is a minimal example to reproduce: Names Default To Here( 1 );
R Init();
x1 = [1, 2, 3];
R Send( x1
...