cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
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;