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

Create JMP Dashboard through my python application

Hi Team,

 

I have an existing python application which does data transformation , I want to generate a JMP dashboard through that application itself ,once all the transformation is done . I want to plot certain graphs to visualize that data . But I want it all to be done in a flow and without user's manual intervention. Is it possible? If so, I am unable to find the correct sources or tutorials for same, can someone redirect me to the sources.

6 REPLIES 6
jthi
Super User

Re: Create JMP Dashboard through my python application

I assume you have JMP18. Generally you have two options: call the Python from JSL or call JSL from Python (both within JMP).

 

Both options do have examples in scripting index, for example calling JSL from Python you would use jmp.run_jsl

jthi_0-1742826986900.png

and to call Python from JMP, Python Execute(), Python Send(), Python Send File()

jthi_1-1742827021969.png

-Jarmo
HV0508
Level III

Re: Create JMP Dashboard through my python application

Hi @jthi ,

How can I achieve this outside of JMP?

jthi
Super User

Re: Create JMP Dashboard through my python application

If you want to use JMP, you have to use JMP? So I'm not sure what you wish to do outside of JMP. You could call the Python code from JMP to perform the data transformations and then build the dashboard in JMP.

-Jarmo

Re: Create JMP Dashboard through my python application

The key jmp import package exists only as C++ code within the JMP executable itself, so this functionality exists only when running within JMP.

Re: Create JMP Dashboard through my python application

Hi,

 

You could use the COM/OLE Automation support as detailed in the Automation Reference here:

https://www.jmp.com/en/support/jmp-documentation

 

but you would need a Python package to allow you to act as an Automation client.

 

Brian Corcoran

JMP Development

HV0508
Level III

Re: Create JMP Dashboard through my python application

Thanks Brian,

 

Let me check this and get back

Recommended Articles