Course notes
Gradescope
Canvas
Discussion forum
Course information
Overview
Syllabus
Support
Course staff
Schedule
Useful links
FAQ
Reference sheets
Course notes
Application exercises
Homework
HW 01 - Prefresher
HW 02 - Grammar of graphics + layers
HW 03 - Stats, scales, and coordinate systems
Projects
Project 01
Project 02
Project tips + resources
Extra credit
Tutorials
Course notes
Modified
May 24, 2026
Annotating charts
The choice of where to place axis tick marks is a small detail that has a large effect on readability. Poorly chosen breaks can obscure patterns, force readers to…
Dashboards
The Big Mac Index is a useful case study in dashboard design. Notice:
Data wrangling (I)
We’ll use the
penguins
dataset throughout this lesson to demonstrate {dplyr} operations. If you need a reminder of its structure:
Data wrangling (II)
Data for real projects rarely lives in a single table. A hospital database might have separate tables for patients, visits, diagnoses, and prescriptions. A course system…
Deep dive: coordinates + facets
A
coordinate system
combines the
x
and
y
position aesthetics to produce a two-dimensional location on the plot. It also determines how axes and panel backgrounds are drawn.…
Deep dive: layers (I)
Throughout this lesson we’ll use data on houses sold in Tompkins County, NY from 2022–24, scraped from Redfin.
Deep dive: layers (II)
We’ll continue using the Tompkins County home sales data from the previous lesson. Here is the full data preparation pipeline in a single pipeline:
Deep dive: stats + scales + guides
The World Bank publishes a rich and detailed set of socioeconomic indicators spanning several decades and dozens of topics. Here we focus on a few key indicators for the…
Deep dive: themes
Here is a chart made entirely with {ggplot2}, themed to match the Great British Bake Off:
From static to motion: Animated charts
Animation
adds a temporal or sequential dimension to a chart. The core question is whether that dimension carries meaningful information that a static chart cannot show.
Implementing accessibility
In early 2020, “flatten the curve” became one of the most widely shared data visualizations in history.
Interactive reporting with Shiny I
Shiny is a web application framework for R that allows you to build interactive web applications using R code. A Shiny app is a live, running R process: when a reader…
Interactive reporting with Shiny II
From Shiny I, our app had two inputs (
name
,
var
) feeding one output (
plot
):
Interactive reporting with Shiny III
Much of the interface provided by Shiny is based on Bootstrap — a widely used HTML/CSS/JavaScript framework. Shiny widgets, page layouts, and default styling all come from…
Interactivity in charts
The foundational principle of interactive data visualization comes from Ben Shneiderman’s 1996 paper “The eyes have it”:
Optimizing color spaces
Color in data visualization serves distinct purposes. Using color that matches its intended purpose makes charts easier to read; mismatched color usage introduces confusion.
Qualities of great visualizations
In his book
The Truthful Art
, Alberto Cairo argues that a great visualization must satisfy five interconnected qualities:
Telling the story with data
Data communication is not just about presenting facts. It is about telling a
story
— a sequence of observations presented in an order that creates understanding and, often…
The grammar of graphics
This page is a summary of
A Layered Grammar of Graphics
by Hadley Wickham. I strongly encourage you to read the original article in conjunction with this summary.
Visualizing spatial data (I)
Data visualization and cartography have been intertwined since at least 1854, when Dr. John Snow mapped cholera deaths in London’s Soho district:
Visualizing spatial data II
Raster maps provide a photographic background but give no access to the underlying geography. For complete control over the geographic elements of your geospatial…
Visualizing survey data
A
poll
is a survey or inquiry into public opinion conducted by interviewing a random sample of people.
Welcome to INFO 3312/5312
INFO 3312/5312 - Data Communication organizes the material around three interrelated questions.
Wrap-up: Where to go from here
The course learning objectives for INFO 3312/5312:
No matching items
Reference sheets
Application exercises