cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
qspringleaf
Level III

How to change "quantiles distribution" Summary Page

How to change "quantiles distribution" Summary Page marked yellow. from current summary to a new one (summary use 1% a step), then can get more detailed distribution.

 

qspringleaf_0-1595378861746.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: How to change "quantiles distribution" Summary Page

By golly, there is an option to do this.  Click on the red triangle and go to

      Display Options==>Set Quantile  Increment

Enter in .01, and you will get the results you want.

Thanks for the response.....it made me look.......one learns something new about JMP every day

Jim

View solution in original post

4 REPLIES 4
txnelson
Super User

Re: How to change "quantiles distribution" Summary Page

The below script works, but there is an option under the red triangle

     Display Options==>Set Quantile Increment

Here is an example on how to do that

detailed.PNG

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\semiconductor capability.JMP" );

dis = dt << Distribution( Continuous Distribution( Column( :NPN1 ) ) );

percentiles = {};
knowns = {};
values = {};

For( i = 100, i >= 0, i--,
	Insert Into( percentiles, Format( i / 100, "Percent", 6, 1 ) );
	If(
		i == 100, Insert Into( knowns, "maximum" ),
		i == 75, Insert Into( knowns, "quartile" ),
		i == 50, Insert Into( knowns, "median" ),
		i == 25, Insert Into( knowns, "quartile" ),
		i == 0, Insert Into( knowns, "minimum" ),
		Insert Into( knowns, "" )
	);
	Insert Into( values, Col Quantile( :NPN1, i / 100 ) );
);

newTableBox = Outline Box( "Detailed Quantiles",
	Table Box(
		String Col Box( "", percentiles ),
		String Col Box( "", knowns ),
		Number Col Box( "", values )
	)
);

report( dis )["Quantiles"] << Append( newTableBox );
report( dis )["Quantiles"] << delete;

 

 

 

Jim
qspringleaf
Level III

Re: How to change "quantiles distribution" Summary Page

thanks for suggestion, do have tips that work by changing setting instead of script? many thanks
txnelson
Super User

Re: How to change "quantiles distribution" Summary Page

By golly, there is an option to do this.  Click on the red triangle and go to

      Display Options==>Set Quantile  Increment

Enter in .01, and you will get the results you want.

Thanks for the response.....it made me look.......one learns something new about JMP every day

Jim
qspringleaf
Level III

Re: How to change "quantiles distribution" Summary Page

thanks, it works well.