Plotting mean values with standard deviation and min/ max values

19 visualizzazioni (ultimi 30 giorni)
Hello all, I was wondering if it is possible to plot the mean of a set of values as a scatter, add the standard deviation as a bar and then the min/ max values as error bars on one graph? I've attached an example from a paper for visualisation. Thanks in advance for any help.
dispStatPlot.png

Risposte (1)

Lester Wang
Lester Wang il 15 Mag 2019
boxplot will do.
x = [Jan Feb ... ] ; % assume Jan, Feb are column vectors that contain the data with the same length.
figure;boxplot(x); % will plot something similar to what you want.
Noted that there are many options you can play with, e.g. 'boxstyle', 'color','width', 'whisker'.
The edges of the box are 25th and 75th percentiles. There is no direct way to modify this.

Community Treasure Hunt

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

Start Hunting!

Translated by