17 lines
291 B
Plaintext
17 lines
291 B
Plaintext
|
# Column-wise operations
|
||
|
|
||
|
## Introduction
|
||
|
|
||
|
<!--# TO DO: Write introduction. -->
|
||
|
|
||
|
### Prerequisites
|
||
|
|
||
|
In this chapter we'll continue using dplyr.
|
||
|
dplyr is a member of the core tidyverse.
|
||
|
|
||
|
```{r setup, message = FALSE}
|
||
|
library(tidyverse)
|
||
|
```
|
||
|
|
||
|
<!--# TO DO: Write chapter around across, etc. -->
|