6

I would like to run python script from SAS JMP environment using JSL. What are the options?

1201ProgramAlarm
  • 32,384
  • 7
  • 42
  • 56
Felix
  • 1,539
  • 8
  • 20
  • 35

2 Answers2

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://communities.sas.com/t5/SAS-Communities-Library/Tip-How-to-execute-a-Python-script-in-SAS-Enterprise-Miner/ta-p/223761

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" )
);