bars are stacked instead of grouped while 'grouped'
3 次查看(过去 30 天)
显示 更早的评论
hi guys, does anybody maybe know why my bars keep being stacked instead of grouped??
qual = readmatrix('qualtrics_srec.txt');
qual_jong = readmatrix('qualtrics_srec_jong.txt');
qual_oud = readmatrix('qualtrics_srec_oud.txt');
figure
bar(qual(57,3:14),'grouped')
hold on
bar(qual_jong(29,3:14),'grouped')
bar(qual_oud(29,3:14),'grouped')
0 个评论
采纳的回答
Scott MacKenzie
2022-6-22
编辑:Scott MacKenzie
2022-6-22
To group the bars, use something like this:
qual = rand(57);
qual_jong = rand(29);
qual_oud = rand(29);
d = [qual(57,3:14); qual_jong(29,3:14); qual_oud(29,3:14)];
figure
bar(d); % or use d' depending on the desired grouping
The 'grouped' modifier has no effect in your code because the data in each bar function are just a vector.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dialog Boxes 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!