cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
vharibal
Level II

How to import a variable value from JMP to Python?

 

I would like to print the value of "rate" from JMP to Python.

 

 

rate = 0.07;
show(rate);

Python Init(Use Python Version("3.12.3"));
Python Send( rate, Python Name( "err_rate" ) );
Python Submit( "print(err_rate)" );

2 REPLIES 2
jthi
Super User

Re: How to import a variable value from JMP to Python?

If it is possible, update to JMP18 and using Python in JMP gets much easier (you will be "limited" to Python 3.11 for now though)

Names Default To Here(1);

rate = 0.07;

Python Send(rate);
Python Submit("\[print(rate)]\");

//get_rate = Python Get(rate);
//show(get_rate);

Write();
-Jarmo
txnelson
Super User

Re: How to import a variable value from JMP to Python?

For JMP 17 and earlier, I have a non Anaconda  version(8.6) of Python installed.  I successfully ran your sample code without error.  I did remove the "Use Python Version" since JMP finds it by default. 

The integration of JMP  with Python has been an ongoing issue, culminating with JMP 18 installing a version of Python with it.  If you can update to JMP 18 as Jarmo suggests is the best solution.  If you can not update, then I suggest you search the Discussion responses for possible solutions. I suspect that Python version 12 may be an issue.  If you don't absolutely need version 12, I suggest you try deleting it, and installing a non Anaconda version of an older version of Python.

Jim