R: Intro to qplot()
R: Intro to qplot()
qplot() stands for Quick Plot. It is an easy to use plotting tool for R. In order to use qplot(), you need to have ggplot2 installed. To see if you have it, just type the following:
library(ggplot2)
If you get an error, you will need to install the package. To install package:
install.packages("ggplot2") library(ggplot2)
Okay, now let’s get some data. R comes will a great collection of data sets…
View On WordPress













