Tutorial: Using plot() function

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

Hello Readers! This is my first post as a member ofR-bloggers. In this post I’m going to talk about the basic plotting in R, fortwo dimensional. This is a tutorial for beginners in R.

To begin with, let’s define a vector first. Say wehave vector x, which is a sequence from 1 to 10 with length of 100 points. Thatis, 

Then, here’s the simplest way on plotting a yfunction using points on vector x.


Now, you can modify your plot. Say you want to add atitle on your plot. Then you can just add main=”Plot of sin(x) + cos(x)”, on the code. That is,


Adding label on both axes is achieved using xlab andylab options. Thus, we have,

Moreover, you can also change the style of yourplot, by changing the type of it. And here are the possible types of plot:

“p” for points,
“l” for lines,
“b” for both,
“c” for the lines part alone of”b”,
“o” for both overplotted,
“h” for histogram like (or high-density)vertical lines,
“s” for stair steps,
“S” for other steps,
“n” for no plotting.

So let’s say we choose type “h”. Then we have

Looking at the plot now, it seems that the lines arevery thin. To make it thicker we need to add an option lwd, which is for the linewidth. And thus, changing the line width and making it thicker, we can give avalue say 2.5.

Now, let’s change the color of it to “red”. Just apply coloption,  

But in the case of type= “p”, you can also change the size of thecircle by using cex option.
In addition, you can also change the plotting’character’, by using the pch option in R.

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

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)