Combining and Visualizing two histograms
9 次查看(过去 30 天)
显示 更早的评论
Hi,
I am having histogram plot of (x,y) =(15, 1000), this belongs to one class. And also I am having histogram plot of (x,y) = (15, 1500) of another class. (here, x axis same, but y axis different). I need to combine these two plots in a single plot separating each class. How can I do that? Pease help me with this. Thanks in advance.
采纳的回答
Abderrahim. B
2022-7-12
编辑:Abderrahim. B
2022-7-12
Hi!
Use hold on, will be displayed in 2 different colors.
Example 1:
x = randi(10,20,1) ;
y = randi(10,20,1) ;
histogram(x);
hold on
histogram(y);
Example 2:
Use bar function
figure
bar([x, y], 'stacked')
legend x y
2 个评论
Abderrahim. B
2022-7-12
编辑:Abderrahim. B
2022-7-12
I edited my answer. Check it and let me know if this is what you are trying to do!
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!