Restructure wrangle, add stubs for new chapters

This commit is contained in:
Mine Çetinkaya-Rundel 2021-02-22 00:22:15 +00:00
parent dc31887b1e
commit b86a23477f
5 changed files with 68 additions and 0 deletions

View File

@ -19,7 +19,11 @@ rmd_files: [
"wrangle.Rmd",
"tibble.Rmd",
"tidy.Rmd",
"rectangle.Rmd",
"relational-data.Rmd",
"list-columns.Rmd",
"column-wise.Rmd",
"row-wise.Rmd",
"strings.Rmd",
"factors.Rmd",
"datetimes.Rmd",

16
column-wise.Rmd Normal file
View File

@ -0,0 +1,16 @@
# 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. -->

16
list-columns.Rmd Normal file
View File

@ -0,0 +1,16 @@
# List columns
## 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. -->

16
rectangle.Rmd Normal file
View File

@ -0,0 +1,16 @@
# 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. -->

16
row-wise.Rmd Normal file
View File

@ -0,0 +1,16 @@
# Row-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 rowwise, etc. -->