cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
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