# A tibble: 3 × 3
id name amount
<dbl> <chr> <dbl>
1 1 Alice 100
2 2 Bob 200
3 3 Carol NA
Angela Qian
M06 – Advanced Data Wrangling
Data rarely arrives in a clean format.
Advanced wrangling enables meaningful analysis.
# A tibble: 3 × 3
id name amount
<dbl> <chr> <dbl>
1 1 Alice 100
2 2 Bob 200
3 3 Carol NA
# A tibble: 4 × 3
month product sales
<chr> <chr> <dbl>
1 Jan product_A 100
2 Jan product_B 90
3 Feb product_A 120
4 Feb product_B 110
# A tibble: 2 × 2
category mean_value
<chr> <dbl>
1 A 15
2 B 35
Tip
Revealjs integrates narrative and code into one reproducible workflow.