Percentile-func
This function returns a range comprised of the percentile values for vx at each percent value specified in vy.
dataset percentile(dataset vx, dataset vy)
vx
vy
Returns a range comprised of the percentile values for vx at each percent value specified in vy.
DATA1_A = normal(1000); DATA1_B = {1, 5, 25, 50, 75, 95, 99}; DATA1_C = percentile(DATA1_A, DATA1_B);
The result contains the percentiles of a normal distribution at 1%, 5%, .. and 99%.