Problem with JMP and R (R Send() / R Get() return "The final R statement is incomplete.")
Hi, recently i got an problem with JMP 15.2.0 send/get data from R 4.0.3I just run the following easy script its seem like I can connect to R but cannot send or get data from R using R Send() / R Get()R Init();
x = [1,2,3];
R Send(x);
R Term();
Results:The final R statement is incomplete.
Send data for "x" failed
Another problem is when I use R submit() it always return -1. For exampleR Init();
R s
...