├── .Rbuildignore ├── .gitignore ├── 1-intro.pdf ├── 2-testing.pdf ├── 3-sharing.pdf ├── LICENSE.md ├── README.Rmd ├── README.md ├── notes ├── 3-dependencies.Rmd ├── 4-tidyverse.Rmd ├── 5-interface.Rmd ├── 7-oop.Rmd ├── README.md └── tidytest │ ├── .Rbuildignore │ ├── .gitignore │ ├── DESCRIPTION │ ├── LICENSE │ ├── LICENSE.md │ ├── NAMESPACE │ ├── R │ └── cyl.R │ ├── man │ ├── cyl_plot.Rd │ ├── cyl_sum.Rd │ └── diamonds_summary2.Rd │ └── tidytest.Rproj └── script ├── 3-dependencies.Rmd ├── 4-tidyverse.Rmd ├── 5-interface.Rmd ├── 6-side-effects.Rmd ├── 7-oop.Rmd └── 7-types.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^README\.Rmd$ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | .RData 3 | .Rproj.user 4 | slides 5 | cache 6 | -------------------------------------------------------------------------------- /1-intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/1-intro.pdf -------------------------------------------------------------------------------- /2-testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/2-testing.pdf -------------------------------------------------------------------------------- /3-sharing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/3-sharing.pdf -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/README.md -------------------------------------------------------------------------------- /notes/3-dependencies.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/3-dependencies.Rmd -------------------------------------------------------------------------------- /notes/4-tidyverse.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/4-tidyverse.Rmd -------------------------------------------------------------------------------- /notes/5-interface.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/5-interface.Rmd -------------------------------------------------------------------------------- /notes/7-oop.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/7-oop.Rmd -------------------------------------------------------------------------------- /notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/README.md -------------------------------------------------------------------------------- /notes/tidytest/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/tidytest/.Rbuildignore -------------------------------------------------------------------------------- /notes/tidytest/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | -------------------------------------------------------------------------------- /notes/tidytest/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/tidytest/DESCRIPTION -------------------------------------------------------------------------------- /notes/tidytest/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Charlotte Wickham 3 | -------------------------------------------------------------------------------- /notes/tidytest/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/tidytest/LICENSE.md -------------------------------------------------------------------------------- /notes/tidytest/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/tidytest/NAMESPACE -------------------------------------------------------------------------------- /notes/tidytest/R/cyl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/tidytest/R/cyl.R -------------------------------------------------------------------------------- /notes/tidytest/man/cyl_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/tidytest/man/cyl_plot.Rd -------------------------------------------------------------------------------- /notes/tidytest/man/cyl_sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/tidytest/man/cyl_sum.Rd -------------------------------------------------------------------------------- /notes/tidytest/man/diamonds_summary2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/tidytest/man/diamonds_summary2.Rd -------------------------------------------------------------------------------- /notes/tidytest/tidytest.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/notes/tidytest/tidytest.Rproj -------------------------------------------------------------------------------- /script/3-dependencies.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/script/3-dependencies.Rmd -------------------------------------------------------------------------------- /script/4-tidyverse.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/script/4-tidyverse.Rmd -------------------------------------------------------------------------------- /script/5-interface.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/script/5-interface.Rmd -------------------------------------------------------------------------------- /script/6-side-effects.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/script/6-side-effects.Rmd -------------------------------------------------------------------------------- /script/7-oop.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/script/7-oop.Rmd -------------------------------------------------------------------------------- /script/7-types.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/build-tidy-tools/HEAD/script/7-types.Rmd --------------------------------------------------------------------------------