Nicholas G Reich6 July 2016
plot(cars)
par(cex=2.5, mar=c(4,4,1,1)) plot(cars)
library(ggplot2) ggplot(cars) + geom_point(aes(x=speed, y=dist))
ggplot(cars) + geom_point(aes(x=speed, y=dist)) + theme(text=element_text(size = 36))