Adding a legend to a plot

[This article was first published on Learning R, 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.

It’s pretty easy!

plot (c(1968,2010),c(0,10),type=”n”, # sets the x and y axes scales

xlab=”Year”,ylab=”Expenditures/GDP (%)”) # adds titles to the axes


lines(year,defense,col=”red”,lwd=2.5) # adds a line for defense expenditures


lines(year,health,col=”blue”,lwd=2.5) # adds a line for health expenditures


legend(2000,9.5, # places a legend at the appropriate place
c(“Health”,”Defense”), # puts text in the legend

lty=c(1,1),
# gives the legend appropriate symbols (lines)

lwd=c(2.5,2.5),col=c(“blue”,”red”)) # gives the legend lines the correct color and width


To leave a comment for the author, please follow the link and comment on their blog: Learning R.

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)