How to plot the 10th and 90th percentiles of the predictions?
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuestas (1)
Chunru
el 11 de Sept. de 2022
Editada: Chunru
el 11 de Sept. de 2022
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 comentarios
Chunru
el 12 de Sept. de 2022
I don't know how your data can be interpreted. Can you elaborate more?
Ver también
Categorías
Más información sobre Descriptive Statistics and Visualization en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!