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