* Minor edit + link to style guide * Fix reference * If you don't know order of operations, not clear * Alt text + minor edits * Add median and fix reference * Move up mult groups up to discuss summarise msg * Go over grouping again * Part rename * Chapter rename * Clean up section labels to avoid dups * Update comment * Switch part order * Move columnwise to transform
17 lines
375 B
Plaintext
17 lines
375 B
Plaintext
# Data rectangling {#rectangle-data}
|
|
|
|
## Introduction
|
|
|
|
<!--# TO DO: Write introduction. -->
|
|
|
|
### Prerequisites
|
|
|
|
In this chapter we'll continue using tidyr, which also provides a bunch of tools to rectangle your datasets.
|
|
tidyr is a member of the core tidyverse.
|
|
|
|
```{r setup, message = FALSE}
|
|
library(tidyverse)
|
|
```
|
|
|
|
<!--# TO DO: Write chapter around unnest, hoist, etc. -->
|