Plotting a single time series with double y axes, differently labelled

2 views (last 30 days)
I would like to plot a time series and have the two y axes (left and right) labelled differently (say, in two different languages). I used the yyaxis function but it doesn't produce the expected result: the right axis is created as 0 to 1 as opposed to the range that the left one has, and to fix this one would have to linearly transform that space to match the left one. I've given a simplified example here, but with real scripts, this become very cumbersome.
Is there an easier way to apply labels on the right hand side axis without having to alter its values?
Thanks!
min=0;
max=9;
x=min:max;
y=floor(10 .* rand([max+1 1])); % integers 0 to 9
scatter(x,y)
ylim([min max])
yyaxis left % english labels; min will be 0, max 9
set(gca, 'YTick', min:max)
set(gca, 'YTickLabel', {'zero' 'one' 'two' 'three' 'four' 'five' 'six' 'seven' 'eight' 'nine' })
yyaxis right % italian labels
set(gca, 'YTick', min:max)
set(gca, 'YTickLabel', {'zero' 'uno' 'due' 'tre' 'quattro' 'cinque' 'sei' 'sette' 'otto' 'nove' })

Accepted Answer

Star Strider
Star Strider on 30 Jun 2017
You need to plot after each yyaxis call:
yyaxis left % english labels; min will be 0, max 9
scatter(x,y,'b')
set(gca, 'YTick', min:max)
set(gca, 'YTickLabel', {'zero' 'one' 'two' 'three' 'four' 'five' 'six' 'seven' 'eight' 'nine' })
yyaxis right % italian labels
scatter(x,y,'b')
set(gca, 'YTick', min:max)
set(gca, 'YTickLabel', {'zero' 'uno' 'due' 'tre' 'quattro' 'cinque' 'sei' 'sette' 'otto' 'nove' })
This plots the same values (and colors) twice, so the plot itself does not change.

More Answers (2)

Adam
Adam on 30 Jun 2017
Don't use min and max as variable names, they are functions.
yyaxis is meant for use with two distinct plots, each of which has its own axis. Given that you are plotting nothing for the right axis I would assume you can just set its limits to whatever you want e.g. [0 9] and it will then work fine.
You only set the ticks, but you need to set the limits to be 0 to 9 otherwise the rest of your ticks are just missing off the top.

Jan
Jan on 30 Jun 2017
Edited: Jan on 30 Jun 2017
dmin = 0; % Do not shadow the builtin function "min"
dmax = 9;
x = dmin:dmax;
y = floor(10 .* rand([max+1 1])); % integers 0 to 9
AxesH = axes;
scatter(x,y)
ylim([dmin dmax])
yyaxis left % english labels; min will be 0, max 9
set(AxesH, 'YTick', dmin:dmax, ...
'YTickLabel', {'zero' 'one' 'two' 'three' 'four' 'five' 'six' 'seven' 'eight' 'nine' })
yyaxis right % italian labels
AxesH.YAxis(2).Limits = [dmin, dmax];
AxesH.YAxis(2).TickValues = 0:9;
AxesH.YAxis(2).TickLabels = {'zero' 'uno' 'due' 'tre' 'quattro' 'cinque' 'sei' 'sette' 'otto' 'nove'};
Or easier:
yyaxis right % italian labels
set(gca, 'YTick', min:max, ...
'YLim', [min, max], ... % <- Added
'YTickLabel', {'zero' 'uno' 'due' 'tre' 'quattro' 'cinque' ...
'sei' 'sette' 'otto' 'nove' })

Tags

Community Treasure Hunt

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

Start Hunting!