# session info sessionInfo() # data iris library(ggplot2) options(repr.plot.width=6, repr.plot.height=4) ggplot(iris) + aes(Sepal.Length, Sepal.Width, color = Species) + geom_point() + theme_bw()