The plots from Chapter 5
In Chapter 5 software
From the Quick-R website.
Scatterplots hexbin graph
library(hexbin) x <- rnorm(10000); y <- rnorm(10000) bin <- hexbin(x, y, xbins=50) plot(bin, main="Hexagonal Binning")
htmlwidgets markdown