2021-03-29 21:58:27 +08:00
|
|
|
# Column-wise operations {#column-wise}
|
2021-02-22 08:22:15 +08:00
|
|
|
|
2021-05-04 21:10:39 +08:00
|
|
|
```{r, results = "asis", echo = FALSE}
|
|
|
|
status("drafting")
|
|
|
|
```
|
|
|
|
|
2021-02-22 08:22:15 +08:00
|
|
|
## 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. -->
|