Hello, i want to display separate (side by side) bar on one graph. below is my code but its display bars on single column. and image what i should do?
1 回表示 (過去 30 日間)
古いコメントを表示
clc;
clear all;
hold on;
Rank_N = [15678 10987 15243 3467 1234]; % New Values After Implementation
C1 = categorical ({'Google','Bing','Alxa','Yahoo Directory','DMOZ',});
h1 = bar (C1,Rank_N,'b','barwidth',0.3);
Rank_O = [1111 3456 13456 3345 1038]; % Old Values Before Implementation
C2 = categorical ({'Google','Bing','Alxa','Yahoo Directory','DMOZ',});
h2 = bar (C2,Rank_O,'r','barwidth',0.3);
xlabel('Search Engines');
ylabel('Link Rank');
title('Site Link Rank on Different Search Engines');
legend ('New Values', 'Old Values');
legend ('Location','northeast');
legend ('boxoff');
0 件のコメント
採用された回答
dpb
2019 年 1 月 12 日
編集済み: dpb
2019 年 1 月 12 日
AMENDED:
Rank = [15678 10987 15243 3467 1234;
1111 3456 13456 3345 1038].';
C = categorical ({'Google','Bing','Alxa','Yahoo Directory','DMOZ',});
hBar=bar(C,Rank,'barwidth',0.3);
See doc bar for details on various types of bar graphs and the data orientation for grouped vis a vis stacked, etc., ...
4 件のコメント
dpb
2019 年 1 月 13 日
Use .FaceColor property of each bar handle...follow the documentation to the "OutputArguments" section and then the link to "Bar Properties"
Each of the two groups of bars is a bar object; there are two handles returned in your case so you'll have to set each of those individually or use the set notation with cell arrays to do as a group.
Named arguments in the bar argument list are expanded to apply to each bar object so they affect global properties of the plot, not the pieces thereof individually.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Specifying Target for Graphics Output についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!