Updating jsl scripts using Python to JMP 18
We have jsl scripts that are calling python scripts that I now want to update for the new Python functionality of JMP 18.Up to JMP 18, we did something like this to prepare the Python connection:// Python setup
Python Init( Debug Print Statements( "TRUE" ), Init Trace("TRUE"), Debug Print Output("TRUE") );
Python Submit(
"\[
import numpy as _JMPnp
import scipy as _JMPsp
import pandas as _JMPpd
i
...