cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

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