├── .gitignore ├── 1_intro_tidyr.Rmd ├── 1_intro_tidyr.html ├── 2_dplyr.Rmd ├── 2_dplyr.html ├── 3_purrr.Rmd ├── 3_purrr.html ├── 4_tidyeval.Rmd ├── 4_tidyeval.html ├── 5_tidymodels.Rmd ├── 5_tidymodels.html ├── 6_tidyverse.Rmd ├── 6_tidyverse.html ├── LICENSE ├── README.md ├── dplyr ├── dbplyr.R ├── filtering_rows.R ├── mutating_columns.R ├── selecting_columns.R └── summarizing.R ├── img ├── github_project.png ├── invoke_map.png ├── map.png ├── map2.png ├── pmap.png ├── tidyverse.png └── walk.png ├── libs └── remark-css │ ├── default.css │ ├── robot-fonts.css │ └── robot.css ├── purrr ├── 1_mapping.R ├── 2_fp.R ├── 3_adverbs_mappers.R ├── 4_utilities.R ├── 9_predicates.R └── groups.txt ├── tideval ├── 1_tideval.R └── cheatsheet.R ├── tidymodels ├── 1_parsnip_dials.R └── 2_recipes.R ├── tidyr ├── expanding.R ├── list_clmns.R ├── missing.R ├── reshaping.R └── split_cells.R ├── tidyverse ├── 1_data_wrangling.R ├── 2_tsibble.R ├── 3_tidytext.R ├── dirty_data.xlsx └── tidy_packages.csv ├── touring_the_tidyverse.Rproj └── xaringan-themer.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/.gitignore -------------------------------------------------------------------------------- /1_intro_tidyr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/1_intro_tidyr.Rmd -------------------------------------------------------------------------------- /1_intro_tidyr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/1_intro_tidyr.html -------------------------------------------------------------------------------- /2_dplyr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/2_dplyr.Rmd -------------------------------------------------------------------------------- /2_dplyr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/2_dplyr.html -------------------------------------------------------------------------------- /3_purrr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/3_purrr.Rmd -------------------------------------------------------------------------------- /3_purrr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/3_purrr.html -------------------------------------------------------------------------------- /4_tidyeval.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/4_tidyeval.Rmd -------------------------------------------------------------------------------- /4_tidyeval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/4_tidyeval.html -------------------------------------------------------------------------------- /5_tidymodels.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/5_tidymodels.Rmd -------------------------------------------------------------------------------- /5_tidymodels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/5_tidymodels.html -------------------------------------------------------------------------------- /6_tidyverse.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/6_tidyverse.Rmd -------------------------------------------------------------------------------- /6_tidyverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/6_tidyverse.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/README.md -------------------------------------------------------------------------------- /dplyr/dbplyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/dplyr/dbplyr.R -------------------------------------------------------------------------------- /dplyr/filtering_rows.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/dplyr/filtering_rows.R -------------------------------------------------------------------------------- /dplyr/mutating_columns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/dplyr/mutating_columns.R -------------------------------------------------------------------------------- /dplyr/selecting_columns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/dplyr/selecting_columns.R -------------------------------------------------------------------------------- /dplyr/summarizing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/dplyr/summarizing.R -------------------------------------------------------------------------------- /img/github_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/img/github_project.png -------------------------------------------------------------------------------- /img/invoke_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/img/invoke_map.png -------------------------------------------------------------------------------- /img/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/img/map.png -------------------------------------------------------------------------------- /img/map2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/img/map2.png -------------------------------------------------------------------------------- /img/pmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/img/pmap.png -------------------------------------------------------------------------------- /img/tidyverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/img/tidyverse.png -------------------------------------------------------------------------------- /img/walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/img/walk.png -------------------------------------------------------------------------------- /libs/remark-css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/libs/remark-css/default.css -------------------------------------------------------------------------------- /libs/remark-css/robot-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/libs/remark-css/robot-fonts.css -------------------------------------------------------------------------------- /libs/remark-css/robot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/libs/remark-css/robot.css -------------------------------------------------------------------------------- /purrr/1_mapping.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/purrr/1_mapping.R -------------------------------------------------------------------------------- /purrr/2_fp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/purrr/2_fp.R -------------------------------------------------------------------------------- /purrr/3_adverbs_mappers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/purrr/3_adverbs_mappers.R -------------------------------------------------------------------------------- /purrr/4_utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/purrr/4_utilities.R -------------------------------------------------------------------------------- /purrr/9_predicates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/purrr/9_predicates.R -------------------------------------------------------------------------------- /purrr/groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/purrr/groups.txt -------------------------------------------------------------------------------- /tideval/1_tideval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tideval/1_tideval.R -------------------------------------------------------------------------------- /tideval/cheatsheet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tideval/cheatsheet.R -------------------------------------------------------------------------------- /tidymodels/1_parsnip_dials.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tidymodels/1_parsnip_dials.R -------------------------------------------------------------------------------- /tidymodels/2_recipes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tidymodels/2_recipes.R -------------------------------------------------------------------------------- /tidyr/expanding.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tidyr/expanding.R -------------------------------------------------------------------------------- /tidyr/list_clmns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tidyr/list_clmns.R -------------------------------------------------------------------------------- /tidyr/missing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tidyr/missing.R -------------------------------------------------------------------------------- /tidyr/reshaping.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tidyr/reshaping.R -------------------------------------------------------------------------------- /tidyr/split_cells.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tidyr/split_cells.R -------------------------------------------------------------------------------- /tidyverse/1_data_wrangling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tidyverse/1_data_wrangling.R -------------------------------------------------------------------------------- /tidyverse/2_tsibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tidyverse/2_tsibble.R -------------------------------------------------------------------------------- /tidyverse/3_tidytext.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tidyverse/3_tidytext.R -------------------------------------------------------------------------------- /tidyverse/dirty_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tidyverse/dirty_data.xlsx -------------------------------------------------------------------------------- /tidyverse/tidy_packages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/tidyverse/tidy_packages.csv -------------------------------------------------------------------------------- /touring_the_tidyverse.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/touring_the_tidyverse.Rproj -------------------------------------------------------------------------------- /xaringan-themer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romatik/touring_the_tidyverse/HEAD/xaringan-themer.css --------------------------------------------------------------------------------