How can I plot the same data with two y-axes on the same plot?

102 ビュー (過去 30 日間)
Andrea
Andrea 2014 年 6 月 11 日
コメント済み: Star Strider 2024 年 2 月 5 日
I have some error analysis that requires looking at absolute as well as percent error of some data. I toyed around with plotyy but it essentially plots the data twice with each y-axis. Anyone know how to plot the data once with one scale on the left y-axis (absolute error) and another scale on the right (percent error)
Thanks!
  1 件のコメント
Geoff Hayes
Geoff Hayes 2014 年 6 月 11 日
編集済み: Geoff Hayes 2014 年 6 月 11 日
Isn't that what plotyy is for? See the first example at http://www.mathworks.com/help/matlab/ref/plotyy.html as it plots "two data sets on one graph using two y-axes".

サインインしてコメントする。

採用された回答

Star Strider
Star Strider 2014 年 6 月 12 日
This might do what you want:
x = 0:0.1:2*pi; % Create Data
y = 50 + 10*sin(x);
figure(1)
plotyy(x,y, x,y) % PlotYY
fcyy = get(gcf, 'Children') % Gets handles for both Y-axes
Ryax = fcyy(1); % Right axis handle
Lyax = fcyy(2); % Left axis handle
Lyaxt = get(fcyy(2), 'YTick') % Get Left axis ticks
LyaxDegC = round(10*(Lyaxt-32)/1.8)/10; % Convert to °C (or whatever you want)
set(Ryax, 'YTick',Lyaxt, 'YTickLabel', LyaxDegC) % New Y-tick values
I took a while for me to figure this out. It’s necessary to use ‘gcf’ to get the handles of the two Y-axes. Then, in order to put the right Y-axis ticks at the same places as the left axis ticks, do the conversion on the left axis ticks and then plot them on the right axis. Here, I did a °F to °C conversion. I don’t know how you want to calculate your percent errors, but the ‘LyaxDegC’ line (rename it and its reference in the following line) will do it. I decided to break it out into two lines rather than do it all in the ‘set’ line to make it easier to follow.
The plotyy documentation (that I didn’t think of reading until I completed this) suggests accessing the Y-axis values as:
[hAx,hLine1,hLine2] = plotyy(x,y1,x,y2);
then referring to ‘hAx(1)’ as the left axis handle and ‘hAx(2)’ as the right axis handle. That elinimates the ‘fcyy’ line in my code. The rest of my code remains unchanged.
  6 件のコメント
Deik
Deik 2024 年 2 月 5 日
I have stumbled upon the same question as @Andrea a while ago and found this answer.
But in this one it seems to be necessary to plot the data twice. Since my dataset is quite large that wouldn't work for me.
Is there a way to plot two y-axes (left and right) with a different scale for the same data? I have looked a lot but coudln't find anything so far.
Would be great if you had an idea.
Thanks!
Star Strider
Star Strider 2024 年 2 月 5 日
@Deik — It turns out to be relatively srtaightforward to set a right axis scale without having to re-plot the data.
Try this —
x = linspace(0, 10);
y1 = sin(2*pi*x/2);
y2 = 10*(cos(2*pi*x/5) + 1);
figure
yyaxis left
plot(x, y1)
grid
yyaxis right
ylim([0 20])
figure
yyaxis left
plot(x, y1)
grid
yyaxis right
ylim([0 20])
Ax = gca;
axcolor = Ax.YAxis(1).Color;
Ax.YAxis(2).Color = axcolor;
The left axis color is set by the yyaxis function, however you can easily override that. The left y-axis is YAxis(1) and the right y-axis is YAxis(2). (I never needed to do that previously, so I needed to do a bit of experimentation.)
.

サインインしてコメントする。

その他の回答 (3 件)

Cedric
Cedric 2014 年 6 月 11 日
編集済み: Cedric 2014 年 6 月 11 日
You probably made a mistake, how are you calling PLOTYY?
doc plotyy
and look at examples, and e.g. the following which works
x = 0:0.01:20;
y1 = 200*exp(-0.05*x).*sin(x);
y2 = 0.8*exp(-0.5*x).*sin(10*x);
figure % new figure
plotyy(x,y1,x,y2);
  2 件のコメント
Andrea
Andrea 2014 年 6 月 11 日
I did something very similar to that, but the big difference is I'm looking at the exact same data for both y inputs, just on different scales. I'd like to see one set of data plotted, see the absolute error for a point on the left, and the percent error for the same point on the right. Is there maybe a different function or way to do this?
Cedric
Cedric 2014 年 6 月 11 日
Could you give an example with a few data points, and provide the code that you are using for plotting?

サインインしてコメントする。


Ranzige Erdnuss
Ranzige Erdnuss 2020 年 9 月 27 日
編集済み: Ranzige Erdnuss 2020 年 9 月 27 日
Hi
since plotyy is not recommended anymore, I made an similar approch for yyaxis:
ax = gca;
lLim=ax.YAxis(1).Limits;
rLim=lLim*conversionFaktorOrFun;
ax.YAxis(2).Limits=rLim;
ax.YAxis(1).Limits=lLim;
This following more complete script plots the new COVID-19 casee. Once per 100,000 residents on the left y-axis and once the total number on the right y-axis.
plot(dates, incidence, '.');
xlabel('date');
ylabel('daily new cases per 100,000 residents');
yyaxis('right');
plot(dates, incidence*population, '.', 'Color', 'none');
ylabel('total new infections');
ax = gca;
lLim=ax.YAxis(1).Limits;
rLim=lLim*population;
ax.YAxis(2).Limits=rLim;
ax.YAxis(1).Limits=lLim;
  1 件のコメント
Star Strider
Star Strider 2020 年 9 月 27 日
Thank you for your contribution.
Also, the original thread used R2014a, one release prior to R2014b, that introduced ‘HG2’, the new (and still current) handle graphics system. The original code will only work for release/version R2014a and those prior to it.

サインインしてコメントする。


SAFDAR RASOOL
SAFDAR RASOOL 2019 年 3 月 11 日
can we plot this double y plot with the simulink scope?

カテゴリ

Help Center および File ExchangeTwo y-axis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by