How to plot the 10th and 90th percentiles of the predictions?
Show older comments
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
Answers (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 Comments
Nisar Ahmed
on 11 Sep 2022
Edited: Nisar Ahmed
on 11 Sep 2022
Chunru
on 12 Sep 2022
I don't know how your data can be interpreted. Can you elaborate more?
Categories
Find more on Polar Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!