├── .gitignore ├── README.md ├── handouts ├── Day-1-Synopsis.md ├── Planning.Rmd ├── Planning.pdf ├── RStudio-cloud.Rmd ├── RStudio-cloud.pdf ├── Topics.Rmd ├── Topics.pdf ├── Useful-Links.Rmd ├── Useful-Links.pdf ├── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── cloud.png │ ├── menu.png │ └── top.png └── quiz-sheet.pages ├── pdfs ├── 00-Preclass-Loop.pdf ├── 01-Curriculum.pdf ├── 02-Explanations.pdf ├── 03-Exercises.pdf └── 04-Slides.pdf └── teach-tidy.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/README.md -------------------------------------------------------------------------------- /handouts/Day-1-Synopsis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/Day-1-Synopsis.md -------------------------------------------------------------------------------- /handouts/Planning.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/Planning.Rmd -------------------------------------------------------------------------------- /handouts/Planning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/Planning.pdf -------------------------------------------------------------------------------- /handouts/RStudio-cloud.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/RStudio-cloud.Rmd -------------------------------------------------------------------------------- /handouts/RStudio-cloud.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/RStudio-cloud.pdf -------------------------------------------------------------------------------- /handouts/Topics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/Topics.Rmd -------------------------------------------------------------------------------- /handouts/Topics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/Topics.pdf -------------------------------------------------------------------------------- /handouts/Useful-Links.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/Useful-Links.Rmd -------------------------------------------------------------------------------- /handouts/Useful-Links.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/Useful-Links.pdf -------------------------------------------------------------------------------- /handouts/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/images/1.png -------------------------------------------------------------------------------- /handouts/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/images/2.png -------------------------------------------------------------------------------- /handouts/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/images/3.png -------------------------------------------------------------------------------- /handouts/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/images/4.png -------------------------------------------------------------------------------- /handouts/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/images/5.png -------------------------------------------------------------------------------- /handouts/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/images/cloud.png -------------------------------------------------------------------------------- /handouts/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/images/menu.png -------------------------------------------------------------------------------- /handouts/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/images/top.png -------------------------------------------------------------------------------- /handouts/quiz-sheet.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/handouts/quiz-sheet.pages -------------------------------------------------------------------------------- /pdfs/00-Preclass-Loop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/pdfs/00-Preclass-Loop.pdf -------------------------------------------------------------------------------- /pdfs/01-Curriculum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/pdfs/01-Curriculum.pdf -------------------------------------------------------------------------------- /pdfs/02-Explanations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/pdfs/02-Explanations.pdf -------------------------------------------------------------------------------- /pdfs/03-Exercises.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/pdfs/03-Exercises.pdf -------------------------------------------------------------------------------- /pdfs/04-Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/pdfs/04-Slides.pdf -------------------------------------------------------------------------------- /teach-tidy.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-education/teach-tidy/HEAD/teach-tidy.Rproj --------------------------------------------------------------------------------