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

JMP action recording

daily_learn
Level I

Hi 

when try to record the action:

1. plot x by y

2. fit linear

3. put density ellipse

 

only step1 plot x-y scrip is shown in the log. how to also record the actions done in the report? Thank you

 

daily_learn_0-1692544659532.png

 

1 REPLY 1
txnelson
Super User


Re: JMP action recording

Starting in JMP 16, JMP writes to the log the JSL for the steps that are created from interactive activities.  JMP writes the initial Platform JSL when it is opened.  

// Launch platform: Bivariate
Data Table( "big class" ) << Bivariate( Y( :height ), X( :weight ) );

However, since once the platform is open, many different selections and inputs can continue to be made, it is not until the report for the platform is closed that JMP generates the final form of the platform

// Report snapshot: big class - Fit Y by X of height by weight
Data Table( "big class" ) << Bivariate(
	Y( :height ),
	X( :weight ),
	Fit Line( {Line Color( {212, 73, 88} )} ),
	Density Ellipse( 0.99, {Line Color( {61, 174, 70} )} )
);

If you want to have the JSL for the platform prior to closing it, you can always go to the red triangle and save the script from there.

Jim