cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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

Recommended Articles