I would like to run python script from SAS JMP environment using JSL. What are the options?
Asked
Active
Viewed 1,693 times
2 Answers
1
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

Michał Zaborowski
- 3,911
- 2
- 19
- 39
0
This JSL works in my hands. (JMP 13.2)
x = RunProgram(
executable( "/Users/bywing/anaconda/bin/python" ),
options( "/Users//bywing//BasicIrisExample.py" ),
readfunction( "blob" )
);

Byron Wingerd
- 1
- 1