├── .gitignore ├── README.md ├── Tutorial.Rmd ├── Tutorial.html ├── data ├── .DS_Store ├── gapminder-FiveYearData.csv └── gapminder_wide.csv ├── img ├── dplyr-fig1.png ├── dplyr-fig2.png ├── dplyr-fig3.png ├── splitapply.png └── tidyr-fig1.png └── solutions.Rmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/README.md -------------------------------------------------------------------------------- /Tutorial.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/Tutorial.Rmd -------------------------------------------------------------------------------- /Tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/Tutorial.html -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/gapminder-FiveYearData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/data/gapminder-FiveYearData.csv -------------------------------------------------------------------------------- /data/gapminder_wide.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/data/gapminder_wide.csv -------------------------------------------------------------------------------- /img/dplyr-fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/img/dplyr-fig1.png -------------------------------------------------------------------------------- /img/dplyr-fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/img/dplyr-fig2.png -------------------------------------------------------------------------------- /img/dplyr-fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/img/dplyr-fig3.png -------------------------------------------------------------------------------- /img/splitapply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/img/splitapply.png -------------------------------------------------------------------------------- /img/tidyr-fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/img/tidyr-fig1.png -------------------------------------------------------------------------------- /solutions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochelleterman/r-data-wrang/HEAD/solutions.Rmd --------------------------------------------------------------------------------