CDAE 7990 · Applied Data Science & Visualization
2026-09-03
This is a placeholder slide deck. Content is not finalized.
## heading creates a new slide# Heading (single #) for a section title slide{background-color="#154734"} to a section slide for a full-color break::: {.notes} block (visible in presenter view, not to audience)Use . . . between items to reveal them one at a time:
The core verbs for data manipulation
The pipe |> passes the left-hand object into the first argument of the right-hand function.
Chain multiple steps together:
Keep rows that match a condition.
Keep (or drop) columns by name.
Create new columns or overwrite existing ones.
Collapse rows to summary statistics, optionally by group.
The grammar of graphics
Every plot follows the same structure:
ggplot() initializes the plot and sets the dataaes() maps variables to visual properties (aesthetics)geom_*() determines the type of plotAdd color by a third variable:
Split one plot into small multiples by a variable.
Two-variable facet grid:
CDAE 7990 · Week 1