├── .Rbuildignore ├── .Rprofile ├── .github ├── .gitignore └── workflows │ ├── bookdown.yaml │ └── secrets │ ├── decrypt_secret.sh │ └── gcp-ds4e.json.gpg ├── .gitignore ├── DESCRIPTION ├── README.md ├── _bookdown.yml ├── _common.R ├── _output.yml ├── book.bib ├── css └── preamble.css ├── ds4e.Rproj ├── funcs-adv.Rmd ├── funcs-intro.Rmd ├── ga_script.html ├── gce-i.Rmd ├── index.Rmd ├── intro.Rmd ├── packages.bib ├── parallel.Rmd ├── pics ├── funcs-adv │ ├── debug_ex1.png │ ├── debug_prompt.png │ └── rstudio-debug.png ├── gce-i │ ├── rstudio-export.png │ ├── rstudio-server-login.png │ └── rstudio-server-open.png ├── parallel │ ├── liz-high-five.gif │ ├── parallel.png │ └── serial.png └── spatial │ └── mercator-distortion.gif ├── references.Rmd ├── renv.lock ├── renv ├── .gitignore ├── activate.R └── settings.dcf ├── spatial.Rmd ├── tex └── preamble.tex └── tidyverse.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/.Rprofile -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/bookdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/.github/workflows/bookdown.yaml -------------------------------------------------------------------------------- /.github/workflows/secrets/decrypt_secret.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/.github/workflows/secrets/decrypt_secret.sh -------------------------------------------------------------------------------- /.github/workflows/secrets/gcp-ds4e.json.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/.github/workflows/secrets/gcp-ds4e.json.gpg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/README.md -------------------------------------------------------------------------------- /_bookdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/_bookdown.yml -------------------------------------------------------------------------------- /_common.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/_common.R -------------------------------------------------------------------------------- /_output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/_output.yml -------------------------------------------------------------------------------- /book.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/book.bib -------------------------------------------------------------------------------- /css/preamble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/css/preamble.css -------------------------------------------------------------------------------- /ds4e.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/ds4e.Rproj -------------------------------------------------------------------------------- /funcs-adv.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/funcs-adv.Rmd -------------------------------------------------------------------------------- /funcs-intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/funcs-intro.Rmd -------------------------------------------------------------------------------- /ga_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/ga_script.html -------------------------------------------------------------------------------- /gce-i.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/gce-i.Rmd -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/index.Rmd -------------------------------------------------------------------------------- /intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/intro.Rmd -------------------------------------------------------------------------------- /packages.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/packages.bib -------------------------------------------------------------------------------- /parallel.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/parallel.Rmd -------------------------------------------------------------------------------- /pics/funcs-adv/debug_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/pics/funcs-adv/debug_ex1.png -------------------------------------------------------------------------------- /pics/funcs-adv/debug_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/pics/funcs-adv/debug_prompt.png -------------------------------------------------------------------------------- /pics/funcs-adv/rstudio-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/pics/funcs-adv/rstudio-debug.png -------------------------------------------------------------------------------- /pics/gce-i/rstudio-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/pics/gce-i/rstudio-export.png -------------------------------------------------------------------------------- /pics/gce-i/rstudio-server-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/pics/gce-i/rstudio-server-login.png -------------------------------------------------------------------------------- /pics/gce-i/rstudio-server-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/pics/gce-i/rstudio-server-open.png -------------------------------------------------------------------------------- /pics/parallel/liz-high-five.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/pics/parallel/liz-high-five.gif -------------------------------------------------------------------------------- /pics/parallel/parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/pics/parallel/parallel.png -------------------------------------------------------------------------------- /pics/parallel/serial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/pics/parallel/serial.png -------------------------------------------------------------------------------- /pics/spatial/mercator-distortion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/pics/spatial/mercator-distortion.gif -------------------------------------------------------------------------------- /references.Rmd: -------------------------------------------------------------------------------- 1 | `r if (knitr::is_html_output()) ' 2 | # References {-} 3 | '` 4 | -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/renv/settings.dcf -------------------------------------------------------------------------------- /spatial.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/spatial.Rmd -------------------------------------------------------------------------------- /tex/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/tex/preamble.tex -------------------------------------------------------------------------------- /tidyverse.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantmcdermott/ds4e/HEAD/tidyverse.Rmd --------------------------------------------------------------------------------