- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How to remove summary statistics using JSL
Hello users,
How do I remove graph summary statistics using JSL?
This is the ouput.
Here is the desired output:
I want to do this using JSL. Here is my simple JSL script to generate the graph from Big Class.JMP data:
dt = Open("C:\users\...........\Big Class.JMP");
dt1 = Logistic( Y( :sex ), X( :height ) );
Thanks.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to remove summary statistics using JSL
Here is a very simple way to do it
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Big Class.JMP" );
dt1 = Logistic( Y( :sex ), X( :height ) );
Report( dt1 )["Iterations"] << delete;
Report( dt1 )["Whole Model Test"] << delete;
Report( dt1 )["Fit Details"] << delete;
Report( dt1 )["Parameter Estimates"] << delete;
Jim
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to remove summary statistics using JSL
Here is a very simple way to do it
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Big Class.JMP" );
dt1 = Logistic( Y( :sex ), X( :height ) );
Report( dt1 )["Iterations"] << delete;
Report( dt1 )["Whole Model Test"] << delete;
Report( dt1 )["Fit Details"] << delete;
Report( dt1 )["Parameter Estimates"] << delete;
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to remove summary statistics using JSL
Created:
Jul 22, 2020 12:34 AM
| Last Modified: Jul 22, 2020 3:19 AM
(1995 views)
| Posted in reply to message from txnelson 07-21-2020
Nice and simple. Thanks a lot txnelson.
I had to remove "Report( dt1 )["Fit Details"] << delete;" to make it completely remove all the remaining summary statistics.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Big Class.JMP" );
dt1 = Logistic( Y( :sex ), X( :height ) );
Report( dt1 )["Iterations"] << delete;
Report( dt1 )["Whole Model Test"] << delete;
Report( dt1 )["Parameter Estimates"] << delete;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to remove summary statistics using JSL
I left "Report( dt1 )["Fit Details"] << delete;" in and it deleted all the summary stats. When I commented it out, it left the fit details in.
Jim Loughlin
Loughlin Consulting
Loughlin Consulting