cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
avner8943
Level I

get bivariate plot as scritable

Hello,

 

how can I get a bivariate plot as an object in jsl script? like, if I plot this graph below thru the regular jmp GUI "FIT X by Y" and then I want to write something like

 image.png

 

"Big Class" << get plot as scriptable;
1 REPLY 1

Re: get bivariate plot as scritable

Well, taking what you said literally, you cannot. The plot is part of the scriptable Bivariate object. It cannot exist on its own. You might actually want something else. For example, you can get a copy of this object using the << Clone Box message, but the copy is no longer linked to the Bivariate platform or the data table. It is not interactive. You can get a reference to it using the << Report message to the platform and then send more messages to change or query the report layer. 

 

dt = Current Data Table();

biv = dt << Bivariate( Y( :weight ), X( :height ) );

biv rep = biv << Report;

 

 

Recommended Articles