How to call Python script from SAS JMP environment using jsl script
Asked Answered
M

2

6

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

Marthena answered 30/12, 2016 at 13:23 Comment(0)
M
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

Maun answered 7/1, 2017 at 23:2 Comment(0)
B
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" )
);
Brucebrucellosis answered 4/10, 2017 at 18:48 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.