Plotting mean values with standard deviation and min/ max values
7 views (last 30 days)
Show older comments
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.
0 Comments
Answers (1)
Lester Wang
on 15 May 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.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!