(Custom) Python GUI executed in JMP
Hi everyone, I have a custom python package which uses GUIs for getting the user input. I now want to execute this package from within JMP18.PY_SCRIPT = "
from mydummy.util import jmp
from mydummy.request import this_data
df = this_data().GUI()
jmp_source = jmp.df2jmp(df, 'MY DT')
";
EXECUTE = Python Execute({}, {jmp_source}, PY_SCRIPT);
If(EXECUTE == 0,
DT = Eval(Parse(jmp_source
...