Plot and bar graphs with independent axis
이전 댓글 표시
I need to make a graph with one plot axis and one bar axis upside down, like this image:

There's an easy way to do that on Matlab?
답변 (3개)
dpb
2016년 12월 8일
Not too difficult, no...
hAx(1)=axes('XAxisLocation','top',...
'YDir','reverse');
bar(rand(10,1))
set(hAx(1),'ytick',[])
ylim(hAx(1),[0 10])
hAx(2)=axes('position',get(hAx(1),'position'),'color','none');
line([1:10].',rand(10,1),'color','r')
xlim(hAx(2),xlim(hAx(1)))
results in something of the sort...

Iddo Weiner
2016년 12월 8일
Here's a trick for doing precisely what you are looking for, run the example:
data1 = randi([0,100],100,1); %for plot()
data2 = randi([0,10],100,1); %for bar()
% this is the easy part
plot(1:100, data1,'-r*')
hold on
% here comes the tricky part
data2_complement = 100 - data2;
data2 = [data2_complement data2];
b = bar(data2,'stacked');
b(1).FaceAlpha = 0;
b(1).EdgeAlpha = 0;
In words - what happens here is the following: 1. You plot the data set you want on the top, as a stacked bar, ranging the entire span of the yaxis limits. Do so by adding to your real vector a complementary vector that holds up space (in my example this was data2_complement). 2. Now all you need to do is set the Alpha (transparency) to zero so you won't actually see this complementary vector
Hope this helps
p.s. if you post your real data, I can try adjusting this example to fit with your real task
Danilo M
2016년 12월 8일
0 개 추천
댓글 수: 2
Sure...for my above example
hAx(1)=axes('XAxisLocation','top',...
'YAxisLocation','right',...
'YDir','reverse');
Or, given that you want that, use plotyy or the new-fangled HG2 version of same (I forget its name/syntax not having HG2)
hAx=plotyy(xL,yL,xR,yR,@plot,@bar);
set(hAx(2),'Ydir','reverse','XAxisLoc','top') % reverse,move RH axes
where L/R are LH and RH datasets, respectively.
Iddo Weiner
2016년 12월 8일
Precisely, excellent answer. That is the best way, I agree
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
