How to create a barchart
5 views (last 30 days)
Show older comments
RODRICK PERSUN
on 21 Sep 2017
Commented: RODRICK PERSUN
on 21 Sep 2017
I have the mean and the max of two data sets. I want to create a bar chart that will compare side by side the mean of data set one with data set two and the max of data set one with data set 2. Does anyone know how I can do this?
0 Comments
Accepted Answer
Image Analyst
on 21 Sep 2017
Use bar():
meanValue1 = mean(data1(:)) % Mean of the first set of data.
maxValue2 = max(data2(:)) % Max of the second set of data.
bar([meanValue1, maxValue2], 'BarWidth', 0.97);
More Answers (0)
See Also
Categories
Find more on Annotations 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!