[This article was first published on Ecological Modelling... » 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.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
I decided to go use ggplot2 more frequently and go through everything. For future reference I will start a series of blog posts on ggplot2.
Scatter plot:
library(ggplot2) # producing some data data <- data.frame(x=1:10, y=rnorm(10)) # initiating a plot p <- ggplot(data, aes(x,y)) # plotting as it is p + geom_point() # adjusting size of the points p + geom_point(aes(size=2)) # making the size dynamic p + geom_point(aes(size=y))
In my next post, I will change the axis labels.
To leave a comment for the author, please follow the link and comment on their blog: Ecological Modelling... » 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.