Finding the percentile of a time series
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dear all,
I hope this finds you well.
I had a question concerning quantiles/percentiles. I want to know the 90th percentile of my time series, because I want to use that value as a threshold later on.
Is it enough to use the quantile() or the prctile() commands on my data set, or do I have to go with a different approach that involves sorting my data, finding the standard deviation, etc. or Find the distribution of my data then look at the tails?
Also my time series has NaNs in them. Not sure if that affects the commands.
This is a dropbox link to my data:
https://www.dropbox.com/s/k838d1ww0wj5s38/Help-Data.mat?dl=0
Thank You!!
0 commentaires
Réponse acceptée
the cyclist
le 22 Mar 2018
The order of the inputs will not affect the value of the quantile (using either of those functions). You should not need to do any kind of sorting, or "manually" calculate the quantile.
2 commentaires
the cyclist
le 23 Mar 2018
Modifié(e) : the cyclist
le 23 Mar 2018
Yes.
prctile(Signal,90)
will give the value that 90% of your values are below. The output of that is zero, because about 94% of the values in Signal are zero.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Descriptive Statistics dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!