├── .github └── workflows │ └── render.yml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── README.md ├── _extensions └── quarto-ext │ └── fontawesome │ ├── _extension.yml │ ├── assets │ ├── css │ │ ├── all.css │ │ └── latex-fontsize.css │ └── webfonts │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-v4compatibility.ttf │ │ └── fa-v4compatibility.woff2 │ └── fontawesome.lua ├── _quarto.yml ├── api-for-an-analysis.qmd ├── book.bib ├── cover.png ├── debugging-r.qmd ├── images ├── R-startup.svg ├── info.png ├── rstartup.png ├── rstudio-update-all.png ├── rstudio-update.png └── warning.png ├── img ├── alfred-tidy.png ├── if-you-liked-it-you-should-have-saved-the-source-for-it.jpg ├── multiple-rstudio-projects.png ├── project-onion.svg ├── r-project-onion.svg ├── rstudio-project-switching.png └── rstudio-workspace.png ├── index.qmd ├── installing-packages.qmd ├── installing-r.qmd ├── maintaining-r.qmd ├── naming-files.qmd ├── packages.bib ├── personal-radmin.qmd ├── practice-safe-paths.qmd ├── preamble.tex ├── projects.qmd ├── r-startup.qmd ├── read-source.qmd ├── references.bib ├── references.qmd ├── renv.lock ├── renv ├── .gitignore ├── activate.R └── settings.json ├── reprexing.qmd ├── reproducible-environments.qmd ├── rstartup.mermaid ├── search.qmd ├── sessioninfo.qmd ├── source-and-blank-slates.qmd ├── style.css ├── toc.css └── what-they-forgot.Rproj /.github/workflows/render.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/.github/workflows/render.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC BY-SA 4.0 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/README.md -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_extensions/quarto-ext/fontawesome/_extension.yml -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_extensions/quarto-ext/fontawesome/assets/css/all.css -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/css/latex-fontsize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_extensions/quarto-ext/fontawesome/assets/css/latex-fontsize.css -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/assets/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_extensions/quarto-ext/fontawesome/assets/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /_extensions/quarto-ext/fontawesome/fontawesome.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_extensions/quarto-ext/fontawesome/fontawesome.lua -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/_quarto.yml -------------------------------------------------------------------------------- /api-for-an-analysis.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/api-for-an-analysis.qmd -------------------------------------------------------------------------------- /book.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/book.bib -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/cover.png -------------------------------------------------------------------------------- /debugging-r.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/debugging-r.qmd -------------------------------------------------------------------------------- /images/R-startup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/images/R-startup.svg -------------------------------------------------------------------------------- /images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/images/info.png -------------------------------------------------------------------------------- /images/rstartup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/images/rstartup.png -------------------------------------------------------------------------------- /images/rstudio-update-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/images/rstudio-update-all.png -------------------------------------------------------------------------------- /images/rstudio-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/images/rstudio-update.png -------------------------------------------------------------------------------- /images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/images/warning.png -------------------------------------------------------------------------------- /img/alfred-tidy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/img/alfred-tidy.png -------------------------------------------------------------------------------- /img/if-you-liked-it-you-should-have-saved-the-source-for-it.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/img/if-you-liked-it-you-should-have-saved-the-source-for-it.jpg -------------------------------------------------------------------------------- /img/multiple-rstudio-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/img/multiple-rstudio-projects.png -------------------------------------------------------------------------------- /img/project-onion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/img/project-onion.svg -------------------------------------------------------------------------------- /img/r-project-onion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/img/r-project-onion.svg -------------------------------------------------------------------------------- /img/rstudio-project-switching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/img/rstudio-project-switching.png -------------------------------------------------------------------------------- /img/rstudio-workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/img/rstudio-workspace.png -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/index.qmd -------------------------------------------------------------------------------- /installing-packages.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/installing-packages.qmd -------------------------------------------------------------------------------- /installing-r.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/installing-r.qmd -------------------------------------------------------------------------------- /maintaining-r.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/maintaining-r.qmd -------------------------------------------------------------------------------- /naming-files.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/naming-files.qmd -------------------------------------------------------------------------------- /packages.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/packages.bib -------------------------------------------------------------------------------- /personal-radmin.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/personal-radmin.qmd -------------------------------------------------------------------------------- /practice-safe-paths.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/practice-safe-paths.qmd -------------------------------------------------------------------------------- /preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/preamble.tex -------------------------------------------------------------------------------- /projects.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/projects.qmd -------------------------------------------------------------------------------- /r-startup.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/r-startup.qmd -------------------------------------------------------------------------------- /read-source.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/read-source.qmd -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/references.bib -------------------------------------------------------------------------------- /references.qmd: -------------------------------------------------------------------------------- 1 | # (PART) Backmatter {-} 2 | 3 | `r if (knitr:::is_html_output()) ' 4 | # References {-} 5 | '` 6 | -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/renv/settings.json -------------------------------------------------------------------------------- /reprexing.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/reprexing.qmd -------------------------------------------------------------------------------- /reproducible-environments.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/reproducible-environments.qmd -------------------------------------------------------------------------------- /rstartup.mermaid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/rstartup.mermaid -------------------------------------------------------------------------------- /search.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/search.qmd -------------------------------------------------------------------------------- /sessioninfo.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/sessioninfo.qmd -------------------------------------------------------------------------------- /source-and-blank-slates.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/source-and-blank-slates.qmd -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/style.css -------------------------------------------------------------------------------- /toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/toc.css -------------------------------------------------------------------------------- /what-they-forgot.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstats-wtf/what-they-forgot/HEAD/what-they-forgot.Rproj --------------------------------------------------------------------------------