From b86a23477fe3ab7664de105e67b83d348eefa239 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mine=20=C3=87etinkaya-Rundel?= Date: Mon, 22 Feb 2021 00:22:15 +0000 Subject: [PATCH] Restructure wrangle, add stubs for new chapters --- _bookdown.yml | 4 ++++ column-wise.Rmd | 16 ++++++++++++++++ list-columns.Rmd | 16 ++++++++++++++++ rectangle.Rmd | 16 ++++++++++++++++ row-wise.Rmd | 16 ++++++++++++++++ 5 files changed, 68 insertions(+) create mode 100644 column-wise.Rmd create mode 100644 list-columns.Rmd create mode 100644 rectangle.Rmd create mode 100644 row-wise.Rmd diff --git a/_bookdown.yml b/_bookdown.yml index 53319ff..c9c8466 100644 --- a/_bookdown.yml +++ b/_bookdown.yml @@ -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", diff --git a/column-wise.Rmd b/column-wise.Rmd new file mode 100644 index 0000000..4f1ac34 --- /dev/null +++ b/column-wise.Rmd @@ -0,0 +1,16 @@ +# Column-wise operations + +## Introduction + + + +### Prerequisites + +In this chapter we'll continue using dplyr. +dplyr is a member of the core tidyverse. + +```{r setup, message = FALSE} +library(tidyverse) +``` + + diff --git a/list-columns.Rmd b/list-columns.Rmd new file mode 100644 index 0000000..2aaaa57 --- /dev/null +++ b/list-columns.Rmd @@ -0,0 +1,16 @@ +# List columns + +## 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) +``` + + diff --git a/rectangle.Rmd b/rectangle.Rmd new file mode 100644 index 0000000..53624ca --- /dev/null +++ b/rectangle.Rmd @@ -0,0 +1,16 @@ +# Rectangle data + +## 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) +``` + + diff --git a/row-wise.Rmd b/row-wise.Rmd new file mode 100644 index 0000000..8c76617 --- /dev/null +++ b/row-wise.Rmd @@ -0,0 +1,16 @@ +# Row-wise operations + +## Introduction + + + +### Prerequisites + +In this chapter we'll continue using dplyr. +dplyr is a member of the core tidyverse. + +```{r setup, message = FALSE} +library(tidyverse) +``` + +