Percentiles

13 vues (au cours des 30 derniers jours)
Colin
Colin le 11 Juin 2012
Modifié(e) : David Ebert le 3 Avr 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

Réponses (1)

Colin
Colin le 11 Juin 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 commentaire
David Ebert
David Ebert le 3 Avr 2022
Modifié(e) : David Ebert le 3 Avr 2022
Thanks, appreciate it, was looking for a similar function.

Connectez-vous pour commenter.

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by