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 中查找有关 Discrete Data Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
