필터 지우기
필터 지우기

how to print the values of each bar on top of it; multibar and subplots

조회 수: 4 (최근 30일)
Hello, I'm desperately searching an easy way to print my values on my bars. At the moment I have this: https://imageshack.us/photo/my-images/59/barsm.jpg/ Sorry for the bad quality. As you perhaps can see I have characters only under every bar or additionally in or over every bar. I only want the values once per diagramm and I think the most eye appealing solution would be right on top of every bar.
Unfortunately I don't understand this code, so I don't know whats going wrong here and cant correct it.
This is the code:
% code
% the data
d=[
4 8 9 7 4
8 7 5 5 8
2 7 1 4 9
];
lab={
'ab' 'bc' 'ef' 'ww' 'qq'
'q' 'd' 'c' 'w' 'r'
'w' 'i' 'yr' 'w' 'r'
};
% the engine
bh=bar(d);
xd=get(bh,'children');
xd=get([xd{:}],'xdata');
xd=cat(2,xd{:});
xdd=diff(xd);
xd=sort(xd(1,:)+.5*xdd(2,1));
set(gca,'xtick',xd);
set(gca,'xticklabel',lab.');
yl=get(gca,'ylim');
set(gca,'ylim',[yl(1),yl(2)+3]);
text(xd,repmat(11,1,numel(xd)),lab.','horizontalalignment','center');

채택된 답변

Image Analyst
Image Analyst 2013년 1월 4일
Replace the last line:
text(xd,repmat(11,1,numel(xd)),lab.','horizontalalignment','center');
with these two lines:
yValues = d' + 0.5;
text(xd, yValues(:),lab.','horizontalalignment','center');

추가 답변 (2개)

Teja Muppirala
Teja Muppirala 2013년 1월 4일
Would something like this work?
Data1 = [1 2 0 3 4];
Data2 = [2 3 4 5 5];
hb = bar([Data1;Data2]);
% Find the x location of each bar
xvals = unique(cell2mat(get(findall(hb,'type','patch'),'xdata')));
xvals = mean(reshape(xvals,2,[]));
% Put the text there
text(xvals,[Data1 Data2],mat2cell([Data1 Data2]),...
'Vert','bot','horiz','cen','FontName','Arial','Fontsize',12);
ylim([0 6])
  댓글 수: 1
David
David 2013년 1월 4일
nicely done. Also a very good answer. Can you tell me how I can use a matrix as input instead of arrays?

댓글을 달려면 로그인하십시오.


Hello kity
Hello kity 2013년 1월 3일
편집: Hello kity 2013년 1월 3일
I was doing the same, found this for you:
x = [1 2 0 3 4];
xname = {'Foo','Bar','','Baz','Othername'};
bar(x)
text(1:numel(x),x,xname,'horizontalalignment','center','verticalalignment','bottom')
in case you use more variable in one bar then do following
for example
xname = {'Data1', 'Data2'};
bar(1, Data1, 'r')
hold on
bar(2, Data2, 'g')
text(1:2,[Data1 Data2], etc)
  댓글 수: 1
David
David 2013년 1월 4일
편집: David 2013년 1월 4일
Thank You!!! Can I use the second solution when I have a second variable?
I used:
Data1 = [1 2 0 3 4]
Data2 = [2 3 4 5 5]
But it tells me:
Error using bar (line 55)
X must be same length as Y.
But I have for one X multiple Y and I have multiple Xs.
If I use your solution I will have:
y y y y y y y y y y
x1x1x1x1x1x2x2x2x2x2
I need:
y y y y y y y y y y
x1 x2
So perhaps can I do this if I use your solution and only let with Text the x1 and x2 label appear once:
y y y y y y y y y y
x1 x2
But how can I have the white space between the bars:
y y y y y y y y y y
x1 x2
I believe the step from Excel to Matlab was not my best decision.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by