Plotting mean values with standard deviation and min/ max values

7 Ansichten (letzte 30 Tage)
Joseff Saunders
Joseff Saunders am 12 Feb. 2019
Beantwortet: Lester Wang am 15 Mai 2019
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

Antworten (1)

Lester Wang
Lester Wang am 15 Mai 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