如何使用jsl脚本从SAS JMP环境调用Python脚本

时间:2016-12-30 13:23:24

标签: python sas-jmp jsl

我想使用JSL从SAS JMP环境运行python脚本。有什么选择?

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

这个JSL在我手中。 (JMP 13.2)

x = RunProgram(
    executable( "/Users/bywing/anaconda/bin/python" ),
    options( "/Users//bywing//BasicIrisExample.py" ),
    readfunction( "blob" )
);