Statistics 4868/6610 Data Visualization
Prof. Eric A. Suess
2/22/2016
Today in the computer lab we will go over some examples from Chapter 5.
The plots from Chapter 5
The first three Activities are about using Protovis and D3.js to make plots that can be viewed through a web browser.
The fourth Activity is about Color Brewer.
The remaining Activities are about making plots in Tableau that are close to the plots showing the book. Try your best to make the plots, they might not look the same as what is presented in the book.
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")