cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

get bivariate plot as scritable

avner8943
Level I

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;