library(ggplot2)
The first function you might start with is qplot(), short for quick plot. It behaves similarly to plot() but provides many more options.
qplot()
plot()
qplot(displ, hwy, data = mpg)
qplot(displ, hwy, data = mpg, colour = class)