One R Tip A Day: How to draw a plot with two Y axises and one X axis

[This article was first published on One Tip Per Day, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

One R Tip A Day: How to draw a plot with two Y axises and one X axis
plot(1:10)
par(“usr”)
# [1] 0.64 10.36 0.64 10.36
# Now resetting y axis’ usr coordinates:
par(usr=c(par(“usr”)[1:2], 101, 105))
points(1:5, 105:101, col=”red”)
axis(4)



par(mar=c(4, 5, 4, 5) + 0.1)
plot(y1, type=’b’, col=’gray’, ylim=range(c(y1, y2)), ylab=”y”)
lines(y2, type=’b’, pch=19)
# draw the other Y axis 
par(usr=c(par(“usr”)[1:2], range(Y)))
lines(Y, type=’b’, pch=20, col=’blue’)
axis(4, col.axis=’blue’)
# manually label the other Y axis
mtext(side=4, line=1, ‘Y’, col=’blue’)
legend(‘topleft’, c(“y1”, “y2”, “Y”), pch=c(19, 1, 20), col=c(‘black’, ‘gray’, ‘blue’), lty=1)

A very smart way, rather than transforming one Y axis range to the other Y axis range by math formula.


#Y = (Y-min(Y))*(max(y1, y2) – min(y1, y2))/(max(Y)-min(Y)) + min(y1, y2)

To leave a comment for the author, please follow the link and comment on their blog: One Tip Per Day.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)