- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
JMP action recording
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
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: JMP action recording
Created:
Aug 20, 2023 12:35 PM
| Last Modified: Aug 20, 2023 10:49 AM
(677 views)
| Posted in reply to message from daily_learn 08-20-2023
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