Python & JSL function
From Python in JMP: dataframe column to datatable column best practices and computation speed implications I just learned about this nice new function:
import jmp
jmp.globals['pi'] = 3.1415927
jmp.globals['bB'] = 'Bumble Bee'
print( jmp.globals.items() )
to define variables in the JSL namespace - like a push version of Python Get()
There are some restrictions. E.g. , at the moment jmp.globals...