How to stack histograms

41 次查看(过去 30 天)
Hi,
I'm trying to stack histograms but I'm not having any luck. I would like the data for Security (in blue) to plot along the xaxis and the data for Widefield (in yellow) to sit on top of the Security data.
shist=(MC_participant_Mean(1,Security_all)); %A vector of health info for only the people who lived in security - count of 102
SHist=shist'; %convert row to column
whist=(MC_participant_Mean(1,Widefield_all)); %A vector of health info for only the people who lived in security - count of 99
WHist=whist'; %convert row to column
%figure(1)
histogram(SHist, 'b')
hold on
histogram(WHist, 'y')
hold off
legend('Security', 'Widefield')
These are the errors I'm getting:
>> testSTACK
Error using histogram>parseinput (line 304)
Trailing input arguments must occur in name-value pairs.
Error in histogram (line 145)
[opts,passthrough,dispatchToCategorical] = parseinput(args,firstaxesinput);
Error in testSTACK (line 7)
histogram(SHist, 'b')
The error message is a complete enigma.... Any advice??
Thanks in advance!!

采纳的回答

Star Strider
Star Strider 2021-6-8
See my Comment replying to your Comment.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by