├── .Rbuildignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── miscellaneous.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── check.yaml │ └── lint.yaml ├── .gitignore ├── .lintr ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── apps.R ├── notebooks.R ├── package.R ├── slides.R └── utils.R ├── README.Rmd ├── README.md ├── deploy.sh ├── inst ├── WORDLIST ├── apps │ └── drakeplanner │ │ └── app.R ├── notebooks │ ├── .Rprofile │ ├── .binder │ │ └── Dockerfile │ ├── .gitignore │ ├── 1-functions │ │ ├── .gitignore │ │ ├── 1-functions.Rmd │ │ └── 1-functions.Rproj │ ├── 2-plans-solutions │ │ ├── .gitignore │ │ ├── 2-plans-solutions.Rmd │ │ ├── 2-plans-solutions.Rproj │ │ └── R │ │ │ ├── functions.R │ │ │ └── packages.R │ ├── 2-plans │ │ ├── .gitignore │ │ ├── 2-plans.Rmd │ │ ├── 2-plans.Rproj │ │ └── R │ │ │ ├── functions.R │ │ │ └── packages.R │ ├── 3-changes │ │ ├── .gitignore │ │ ├── 3-changes.R │ │ ├── 3-changes.Rmd │ │ ├── 3-changes.Rproj │ │ └── R │ │ │ ├── functions.R │ │ │ ├── packages.R │ │ │ └── plan.R │ ├── 4-static │ │ ├── .gitignore │ │ ├── 4-static.R │ │ ├── 4-static.Rmd │ │ └── 4-static.Rproj │ ├── 5-dynamic-solutions │ │ ├── .gitignore │ │ ├── 5-dynamic-solutions.Rmd │ │ ├── 5-dynamic-solutions.Rproj │ │ └── R │ │ │ ├── functions.R │ │ │ └── packages.R │ ├── 5-dynamic │ │ ├── .gitignore │ │ ├── 5-dynamic.Rmd │ │ ├── 5-dynamic.Rproj │ │ └── R │ │ │ ├── functions.R │ │ │ └── packages.R │ ├── 6-files-solutions │ │ ├── .gitignore │ │ ├── 6-files-solutions.Rmd │ │ ├── 6-files-solutions.Rproj │ │ ├── R │ │ │ ├── functions.R │ │ │ └── packages.R │ │ └── results.Rmd │ ├── 6-files │ │ ├── .gitignore │ │ ├── 6-files.Rmd │ │ ├── 6-files.Rproj │ │ ├── R │ │ │ ├── functions.R │ │ │ └── packages.R │ │ └── results.Rmd │ ├── README.md │ ├── config │ │ └── options.R │ ├── data │ │ └── customer_churn.csv │ └── rstudio-cloud-setup.R ├── rstudio-cloud-setup.R ├── slides │ ├── COPYRIGHT │ ├── README.md │ ├── data │ │ └── customer_churn.csv │ ├── images │ │ ├── R.png │ │ ├── change.png │ │ ├── combine.png │ │ ├── downstream.png │ │ ├── edgar.jpg │ │ ├── genie.png │ │ ├── graph1.png │ │ ├── graph2.png │ │ ├── graph3.png │ │ ├── graph4.png │ │ ├── graph5.png │ │ ├── images.txt │ │ ├── infographic.svg │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── matt.jpg │ │ ├── mess.svg │ │ ├── metallic-box-3d.svg │ │ ├── no.png │ │ ├── pipelines.png │ │ ├── pythagoras.png │ │ ├── reload.png │ │ ├── ropensci.png │ │ ├── sisyphus.svg │ │ ├── tidyverse.pptx │ │ ├── vis1.png │ │ ├── vis2.png │ │ ├── workflow.png │ │ ├── yes.png │ │ └── yesno.pptx │ ├── index.Rmd │ ├── index.html │ ├── index_files │ │ ├── figure-html │ │ │ ├── c7-1.png │ │ │ ├── c7updated-1.png │ │ │ ├── unnamed-chunk-13-1.png │ │ │ ├── unnamed-chunk-15-1.png │ │ │ ├── unnamed-chunk-17-1.png │ │ │ ├── unnamed-chunk-19-1.png │ │ │ ├── unnamed-chunk-22-1.png │ │ │ └── unnamed-chunk-39-1.png │ │ ├── header-attrs │ │ │ └── header-attrs.js │ │ ├── htmlwidgets │ │ │ └── htmlwidgets.js │ │ ├── remark-css │ │ │ ├── default-fonts.css │ │ │ └── default.css │ │ ├── vis │ │ │ ├── img │ │ │ │ └── network │ │ │ │ │ ├── acceptDeleteIcon.png │ │ │ │ │ ├── addNodeIcon.png │ │ │ │ │ ├── backIcon.png │ │ │ │ │ ├── connectIcon.png │ │ │ │ │ ├── cross.png │ │ │ │ │ ├── cross2.png │ │ │ │ │ ├── deleteIcon.png │ │ │ │ │ ├── downArrow.png │ │ │ │ │ ├── editIcon.png │ │ │ │ │ ├── leftArrow.png │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── rightArrow.png │ │ │ │ │ ├── upArrow.png │ │ │ │ │ └── zoomExtends.png │ │ │ ├── vis.css │ │ │ └── vis.min.js │ │ └── visNetwork-binding │ │ │ └── visNetwork.js │ └── slides.pdf └── tutorials │ ├── learndrakechanges │ ├── index.Rmd │ ├── index.html │ └── manifest.json │ └── learndrakestatic │ ├── data │ ├── README.md │ └── customer_churn.csv │ ├── index.Rmd │ ├── index.html │ └── manifest.json ├── learndrake.Rproj ├── man ├── launch_app.Rd ├── learndrake-package.Rd ├── save_app.Rd ├── save_notebooks.Rd ├── save_slides.Rd └── view_slides.Rd ├── shinyapps.R └── tests ├── testthat.R └── testthat └── test-materials.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/.github/ISSUE_TEMPLATE/miscellaneous.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/.github/workflows/check.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/.lintr -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/apps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/R/apps.R -------------------------------------------------------------------------------- /R/notebooks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/R/notebooks.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/R/package.R -------------------------------------------------------------------------------- /R/slides.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/R/slides.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/deploy.sh -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/apps/drakeplanner/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/apps/drakeplanner/app.R -------------------------------------------------------------------------------- /inst/notebooks/.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/.Rprofile -------------------------------------------------------------------------------- /inst/notebooks/.binder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/.binder/Dockerfile -------------------------------------------------------------------------------- /inst/notebooks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/.gitignore -------------------------------------------------------------------------------- /inst/notebooks/1-functions/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /inst/notebooks/1-functions/1-functions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/1-functions/1-functions.Rmd -------------------------------------------------------------------------------- /inst/notebooks/1-functions/1-functions.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/1-functions/1-functions.Rproj -------------------------------------------------------------------------------- /inst/notebooks/2-plans-solutions/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /inst/notebooks/2-plans-solutions/2-plans-solutions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/2-plans-solutions/2-plans-solutions.Rmd -------------------------------------------------------------------------------- /inst/notebooks/2-plans-solutions/2-plans-solutions.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/2-plans-solutions/2-plans-solutions.Rproj -------------------------------------------------------------------------------- /inst/notebooks/2-plans-solutions/R/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/2-plans-solutions/R/functions.R -------------------------------------------------------------------------------- /inst/notebooks/2-plans-solutions/R/packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/2-plans-solutions/R/packages.R -------------------------------------------------------------------------------- /inst/notebooks/2-plans/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /inst/notebooks/2-plans/2-plans.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/2-plans/2-plans.Rmd -------------------------------------------------------------------------------- /inst/notebooks/2-plans/2-plans.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/2-plans/2-plans.Rproj -------------------------------------------------------------------------------- /inst/notebooks/2-plans/R/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/2-plans/R/functions.R -------------------------------------------------------------------------------- /inst/notebooks/2-plans/R/packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/2-plans/R/packages.R -------------------------------------------------------------------------------- /inst/notebooks/3-changes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /inst/notebooks/3-changes/3-changes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/3-changes/3-changes.R -------------------------------------------------------------------------------- /inst/notebooks/3-changes/3-changes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/3-changes/3-changes.Rmd -------------------------------------------------------------------------------- /inst/notebooks/3-changes/3-changes.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/3-changes/3-changes.Rproj -------------------------------------------------------------------------------- /inst/notebooks/3-changes/R/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/3-changes/R/functions.R -------------------------------------------------------------------------------- /inst/notebooks/3-changes/R/packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/3-changes/R/packages.R -------------------------------------------------------------------------------- /inst/notebooks/3-changes/R/plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/3-changes/R/plan.R -------------------------------------------------------------------------------- /inst/notebooks/4-static/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /inst/notebooks/4-static/4-static.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/4-static/4-static.R -------------------------------------------------------------------------------- /inst/notebooks/4-static/4-static.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/4-static/4-static.Rmd -------------------------------------------------------------------------------- /inst/notebooks/4-static/4-static.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/4-static/4-static.Rproj -------------------------------------------------------------------------------- /inst/notebooks/5-dynamic-solutions/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /inst/notebooks/5-dynamic-solutions/5-dynamic-solutions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/5-dynamic-solutions/5-dynamic-solutions.Rmd -------------------------------------------------------------------------------- /inst/notebooks/5-dynamic-solutions/5-dynamic-solutions.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/5-dynamic-solutions/5-dynamic-solutions.Rproj -------------------------------------------------------------------------------- /inst/notebooks/5-dynamic-solutions/R/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/5-dynamic-solutions/R/functions.R -------------------------------------------------------------------------------- /inst/notebooks/5-dynamic-solutions/R/packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/5-dynamic-solutions/R/packages.R -------------------------------------------------------------------------------- /inst/notebooks/5-dynamic/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /inst/notebooks/5-dynamic/5-dynamic.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/5-dynamic/5-dynamic.Rmd -------------------------------------------------------------------------------- /inst/notebooks/5-dynamic/5-dynamic.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/5-dynamic/5-dynamic.Rproj -------------------------------------------------------------------------------- /inst/notebooks/5-dynamic/R/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/5-dynamic/R/functions.R -------------------------------------------------------------------------------- /inst/notebooks/5-dynamic/R/packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/5-dynamic/R/packages.R -------------------------------------------------------------------------------- /inst/notebooks/6-files-solutions/.gitignore: -------------------------------------------------------------------------------- 1 | *.h5 2 | *.html 3 | -------------------------------------------------------------------------------- /inst/notebooks/6-files-solutions/6-files-solutions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/6-files-solutions/6-files-solutions.Rmd -------------------------------------------------------------------------------- /inst/notebooks/6-files-solutions/6-files-solutions.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/6-files-solutions/6-files-solutions.Rproj -------------------------------------------------------------------------------- /inst/notebooks/6-files-solutions/R/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/6-files-solutions/R/functions.R -------------------------------------------------------------------------------- /inst/notebooks/6-files-solutions/R/packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/6-files-solutions/R/packages.R -------------------------------------------------------------------------------- /inst/notebooks/6-files-solutions/results.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/6-files-solutions/results.Rmd -------------------------------------------------------------------------------- /inst/notebooks/6-files/.gitignore: -------------------------------------------------------------------------------- 1 | *.h5 2 | *.html 3 | -------------------------------------------------------------------------------- /inst/notebooks/6-files/6-files.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/6-files/6-files.Rmd -------------------------------------------------------------------------------- /inst/notebooks/6-files/6-files.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/6-files/6-files.Rproj -------------------------------------------------------------------------------- /inst/notebooks/6-files/R/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/6-files/R/functions.R -------------------------------------------------------------------------------- /inst/notebooks/6-files/R/packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/6-files/R/packages.R -------------------------------------------------------------------------------- /inst/notebooks/6-files/results.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/6-files/results.Rmd -------------------------------------------------------------------------------- /inst/notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/README.md -------------------------------------------------------------------------------- /inst/notebooks/config/options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/config/options.R -------------------------------------------------------------------------------- /inst/notebooks/data/customer_churn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/data/customer_churn.csv -------------------------------------------------------------------------------- /inst/notebooks/rstudio-cloud-setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/notebooks/rstudio-cloud-setup.R -------------------------------------------------------------------------------- /inst/rstudio-cloud-setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/rstudio-cloud-setup.R -------------------------------------------------------------------------------- /inst/slides/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/COPYRIGHT -------------------------------------------------------------------------------- /inst/slides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/README.md -------------------------------------------------------------------------------- /inst/slides/data/customer_churn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/data/customer_churn.csv -------------------------------------------------------------------------------- /inst/slides/images/R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/R.png -------------------------------------------------------------------------------- /inst/slides/images/change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/change.png -------------------------------------------------------------------------------- /inst/slides/images/combine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/combine.png -------------------------------------------------------------------------------- /inst/slides/images/downstream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/downstream.png -------------------------------------------------------------------------------- /inst/slides/images/edgar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/edgar.jpg -------------------------------------------------------------------------------- /inst/slides/images/genie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/genie.png -------------------------------------------------------------------------------- /inst/slides/images/graph1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/graph1.png -------------------------------------------------------------------------------- /inst/slides/images/graph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/graph2.png -------------------------------------------------------------------------------- /inst/slides/images/graph3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/graph3.png -------------------------------------------------------------------------------- /inst/slides/images/graph4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/graph4.png -------------------------------------------------------------------------------- /inst/slides/images/graph5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/graph5.png -------------------------------------------------------------------------------- /inst/slides/images/images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/images.txt -------------------------------------------------------------------------------- /inst/slides/images/infographic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/infographic.svg -------------------------------------------------------------------------------- /inst/slides/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/logo.png -------------------------------------------------------------------------------- /inst/slides/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/logo.svg -------------------------------------------------------------------------------- /inst/slides/images/matt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/matt.jpg -------------------------------------------------------------------------------- /inst/slides/images/mess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/mess.svg -------------------------------------------------------------------------------- /inst/slides/images/metallic-box-3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/metallic-box-3d.svg -------------------------------------------------------------------------------- /inst/slides/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/no.png -------------------------------------------------------------------------------- /inst/slides/images/pipelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/pipelines.png -------------------------------------------------------------------------------- /inst/slides/images/pythagoras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/pythagoras.png -------------------------------------------------------------------------------- /inst/slides/images/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/reload.png -------------------------------------------------------------------------------- /inst/slides/images/ropensci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/ropensci.png -------------------------------------------------------------------------------- /inst/slides/images/sisyphus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/sisyphus.svg -------------------------------------------------------------------------------- /inst/slides/images/tidyverse.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/tidyverse.pptx -------------------------------------------------------------------------------- /inst/slides/images/vis1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/vis1.png -------------------------------------------------------------------------------- /inst/slides/images/vis2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/vis2.png -------------------------------------------------------------------------------- /inst/slides/images/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/workflow.png -------------------------------------------------------------------------------- /inst/slides/images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/yes.png -------------------------------------------------------------------------------- /inst/slides/images/yesno.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/images/yesno.pptx -------------------------------------------------------------------------------- /inst/slides/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index.Rmd -------------------------------------------------------------------------------- /inst/slides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index.html -------------------------------------------------------------------------------- /inst/slides/index_files/figure-html/c7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/figure-html/c7-1.png -------------------------------------------------------------------------------- /inst/slides/index_files/figure-html/c7updated-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/figure-html/c7updated-1.png -------------------------------------------------------------------------------- /inst/slides/index_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /inst/slides/index_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /inst/slides/index_files/figure-html/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/figure-html/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /inst/slides/index_files/figure-html/unnamed-chunk-19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/figure-html/unnamed-chunk-19-1.png -------------------------------------------------------------------------------- /inst/slides/index_files/figure-html/unnamed-chunk-22-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/figure-html/unnamed-chunk-22-1.png -------------------------------------------------------------------------------- /inst/slides/index_files/figure-html/unnamed-chunk-39-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/figure-html/unnamed-chunk-39-1.png -------------------------------------------------------------------------------- /inst/slides/index_files/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/header-attrs/header-attrs.js -------------------------------------------------------------------------------- /inst/slides/index_files/htmlwidgets/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/htmlwidgets/htmlwidgets.js -------------------------------------------------------------------------------- /inst/slides/index_files/remark-css/default-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/remark-css/default-fonts.css -------------------------------------------------------------------------------- /inst/slides/index_files/remark-css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/remark-css/default.css -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/acceptDeleteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/acceptDeleteIcon.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/addNodeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/addNodeIcon.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/backIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/backIcon.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/connectIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/connectIcon.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/cross.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/cross2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/cross2.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/deleteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/deleteIcon.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/downArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/downArrow.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/editIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/editIcon.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/leftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/leftArrow.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/minus.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/plus.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/rightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/rightArrow.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/upArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/upArrow.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/img/network/zoomExtends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/img/network/zoomExtends.png -------------------------------------------------------------------------------- /inst/slides/index_files/vis/vis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/vis.css -------------------------------------------------------------------------------- /inst/slides/index_files/vis/vis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/vis/vis.min.js -------------------------------------------------------------------------------- /inst/slides/index_files/visNetwork-binding/visNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/index_files/visNetwork-binding/visNetwork.js -------------------------------------------------------------------------------- /inst/slides/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/slides/slides.pdf -------------------------------------------------------------------------------- /inst/tutorials/learndrakechanges/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/tutorials/learndrakechanges/index.Rmd -------------------------------------------------------------------------------- /inst/tutorials/learndrakechanges/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/tutorials/learndrakechanges/index.html -------------------------------------------------------------------------------- /inst/tutorials/learndrakechanges/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/tutorials/learndrakechanges/manifest.json -------------------------------------------------------------------------------- /inst/tutorials/learndrakestatic/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/tutorials/learndrakestatic/data/README.md -------------------------------------------------------------------------------- /inst/tutorials/learndrakestatic/data/customer_churn.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inst/tutorials/learndrakestatic/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/tutorials/learndrakestatic/index.Rmd -------------------------------------------------------------------------------- /inst/tutorials/learndrakestatic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/tutorials/learndrakestatic/index.html -------------------------------------------------------------------------------- /inst/tutorials/learndrakestatic/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/inst/tutorials/learndrakestatic/manifest.json -------------------------------------------------------------------------------- /learndrake.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/learndrake.Rproj -------------------------------------------------------------------------------- /man/launch_app.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/man/launch_app.Rd -------------------------------------------------------------------------------- /man/learndrake-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/man/learndrake-package.Rd -------------------------------------------------------------------------------- /man/save_app.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/man/save_app.Rd -------------------------------------------------------------------------------- /man/save_notebooks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/man/save_notebooks.Rd -------------------------------------------------------------------------------- /man/save_slides.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/man/save_slides.Rd -------------------------------------------------------------------------------- /man/view_slides.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/man/view_slides.Rd -------------------------------------------------------------------------------- /shinyapps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/shinyapps.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-materials.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlandau/learndrake/HEAD/tests/testthat/test-materials.R --------------------------------------------------------------------------------