How to plot the 10th and 90th percentiles of the predictions?
Afficher commentaires plus anciens
Hi,
I have attached a data having a (size of a is 115 75) and want to plot the 10th and 90th percentiles of the predictions. How can I do it in MATLAB?
Thanks in advance
Réponses (1)
load(websave("conf_int.mat", "https://www.mathworks.com/matlabcentral/answers/uploaded_files/1121675/conf_int.mat"))
whos
P = prctile(a, [10 90]) % for each column
Pall = prctile(a, [10 90], "all") % for all data
2 commentaires
Nisar Ahmed
le 11 Sep 2022
Modifié(e) : Nisar Ahmed
le 11 Sep 2022
Chunru
le 12 Sep 2022
I don't know how your data can be interpreted. Can you elaborate more?
Catégories
En savoir plus sur Polar Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
