cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

empirical quantiles

Sebastienlg
Level II

Hello all,

 

Is there a way to recover the empirical quantiles (Example quantile at 99.865% and 0.135%) in the case that the data does not follow a normal distribution?

I cannot find it on JMP...

Thanks a lots for your answer,

 

Sebastien

3 REPLIES 3


Re: empirical quantiles

See Help > Scripting Index > Functions > Quantiles:

quantile.JPG

 

Sebastienlg
Level II


Re: empirical quantiles

Thanks for you reply.

How do you apply the quantile function to a to JMP column from a dataset?

I have some difficulties to do that...

Sebastien

txnelson
Super User


Re: empirical quantiles

There may be a better way( see Mark's answer above) , or a more correct way to estimate the values you want.  All I am doing is interpolating the value from the known percentiles above and below.  

Here is an example of finding 99.865 when the 90th and 100th percentiles are known.

Names Default To Here( 1 );
p90 = 68;
p100 = 70;
p99865 = (99.865 - 90) / (100 - 90) * (p100 - p90) + p90;

 

Jim