Reputation: 1579
I would like to run python script from SAS JMP environment using JSL. What are the options?
Upvotes: 6
Views: 1899
Reputation: 1
This JSL works in my hands. (JMP 13.2)
x = RunProgram(
executable( "/Users/bywing/anaconda/bin/python" ),
options( "/Users//bywing//BasicIrisExample.py" ),
readfunction( "blob" )
);
Upvotes: 0
Reputation: 4387
Please look at SAS communities - that would be better source of information.
Some search shows that you can call python script from JSL. Here are two examples:
https://community.jmp.com/t5/Discussions/Best-method-to-get-a-python-object-into-JMP/td-p/15158
Upvotes: 1