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
664786828
Level I

Compute Quantiles with JSL?

I want to Compute a column quantiles, and copy the vaue to a variable! I have try it ,but i didn't success.  i need your help !

dt00=open("G:\JMP study\Diameter0329.jmp");

M=:"Diameter"<<Statistics( Quantiles( 10 ) );

what's the problem?

1 REPLY 1
Craige_Hales
Super User

Re: Compute Quantiles with JSL?

JMP has a scripting index under the Help menu; I found the ColQuantile function looks promising:


dt = Open( "$sample_data\big class.jmp" );


m = Col Quantile( dt:height, 0.50 );



63

more information Statistical Functions

Craige