Percentiles

16 visualizaciones (últimos 30 días)
Colin
Colin el 11 de Jun. de 2012
Editada: David Ebert el 3 de Abr. de 2022
Is there a function that returns the percentile, p, for a given value, x, in array, A?
As opposed to prtcile(A,p) which returns x for array A and percentile p.
The equivalent Excel function is PERCENTRANK.
Thanks

Respuestas (1)

Colin
Colin el 11 de Jun. de 2012
I found this via google search...
A function to calculate the percent rank of each element of a matrix is not available in MATLAB (as at end June 2009).
To work around this issue, use the function TIEDRANK from the Statistics Toolbox and normalize by dividing by the length of the input vector. This converts the result to percentiles.
eg. x = rand(1,40); tiedrank(x)/length(x);
  1 comentario
David Ebert
David Ebert el 3 de Abr. de 2022
Editada: David Ebert el 3 de Abr. de 2022
Thanks, appreciate it, was looking for a similar function.

Iniciar sesión para comentar.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by