27 lines
470 B
Plaintext
27 lines
470 B
Plaintext
# List columns {#sec-list-columns}
|
|
|
|
```{r}
|
|
#| results: "asis"
|
|
#| echo: false
|
|
source("_common.R")
|
|
status("drafting")
|
|
```
|
|
|
|
## 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}
|
|
#| label: setup
|
|
#| message: false
|
|
|
|
library(tidyverse)
|
|
```
|
|
|
|
<!--# TO DO: Write chapter around unnest, hoist, etc. -->
|