├── .Rbuildignore ├── .gitignore ├── LICENSE.md ├── README.md ├── css └── style.css ├── dplyr-learnr.Rmd ├── dplyr-learnr.Rproj ├── dplyr-learnr.html ├── images ├── culmen_depth.png ├── data_wrangler.png ├── dplyr_across_where.jpeg ├── dplyr_case_when_sm.png ├── dplyr_filter_sm.png ├── dplyr_hex.png ├── dplyr_mutate.png ├── dplyr_relocate.png ├── lter_penguins.png ├── r_learners_sm.jpeg └── rename_sm.jpg └── rsconnect └── shinyapps.io └── allisonhorst └── dplyr-learnr.dcf /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^LICENSE\.md$ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/README.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/css/style.css -------------------------------------------------------------------------------- /dplyr-learnr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/dplyr-learnr.Rmd -------------------------------------------------------------------------------- /dplyr-learnr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/dplyr-learnr.Rproj -------------------------------------------------------------------------------- /dplyr-learnr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/dplyr-learnr.html -------------------------------------------------------------------------------- /images/culmen_depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/images/culmen_depth.png -------------------------------------------------------------------------------- /images/data_wrangler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/images/data_wrangler.png -------------------------------------------------------------------------------- /images/dplyr_across_where.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/images/dplyr_across_where.jpeg -------------------------------------------------------------------------------- /images/dplyr_case_when_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/images/dplyr_case_when_sm.png -------------------------------------------------------------------------------- /images/dplyr_filter_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/images/dplyr_filter_sm.png -------------------------------------------------------------------------------- /images/dplyr_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/images/dplyr_hex.png -------------------------------------------------------------------------------- /images/dplyr_mutate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/images/dplyr_mutate.png -------------------------------------------------------------------------------- /images/dplyr_relocate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/images/dplyr_relocate.png -------------------------------------------------------------------------------- /images/lter_penguins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/images/lter_penguins.png -------------------------------------------------------------------------------- /images/r_learners_sm.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/images/r_learners_sm.jpeg -------------------------------------------------------------------------------- /images/rename_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/images/rename_sm.jpg -------------------------------------------------------------------------------- /rsconnect/shinyapps.io/allisonhorst/dplyr-learnr.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonhorst/dplyr-learnr/HEAD/rsconnect/shinyapps.io/allisonhorst/dplyr-learnr.dcf --------------------------------------------------------------------------------