Hello, i want to display separate (side by side) bar on one graph. below is my code but its display bars on single column.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
khalil ur Rehman
am 6 Jan. 2019
Kommentiert: khalil ur Rehman
am 6 Jan. 2019
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 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Legend finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!