├── .gitignore ├── LICENSE.md ├── README.md ├── materials ├── data │ └── stackoverflow.rds ├── exercises │ ├── 01-Prediction.Rmd │ ├── 02-Classification.Rmd │ ├── 04-Ensembling.Rmd │ ├── 04-helpers.R │ ├── 05-Workflows.Rmd │ ├── 06-Recipes.Rmd │ ├── 07-CV.Rmd │ └── 08-Tune.Rmd ├── handouts │ ├── 00-what-is-ml-handout.Rmd │ ├── 00-what-is-ml-handout.pdf │ ├── 01-predicting-handout.Rmd │ ├── 01-predicting-handout.pdf │ ├── 03-resampling-handout.Rmd │ ├── 03-resampling-handout.pdf │ ├── 04-ensembling-handout.Rmd │ ├── 04-ensembling-handout.pdf │ ├── 07-cv-handout.Rmd │ ├── 07-cv-handout.pdf │ └── images │ │ ├── cv-blanks.jpeg │ │ ├── cv-match.jpeg │ │ ├── ensembling.jpeg │ │ └── statistical-modeling.png └── solutions │ ├── 01-Prediction.Rmd │ ├── 02-Classification.Rmd │ ├── 04-Ensembling.Rmd │ ├── 04-helpers.R │ ├── 05-Workflows.Rmd │ ├── 06-Recipes.Rmd │ ├── 07-CV.Rmd │ └── 08-Tune.Rmd ├── netlify.toml ├── site ├── R │ └── build.R ├── assets │ ├── images │ │ └── logo.png │ └── scss │ │ └── custom.scss ├── config.toml ├── config │ └── _default │ │ ├── languages.toml │ │ ├── menus.toml │ │ └── params.toml ├── content │ ├── authors │ │ ├── alison │ │ │ ├── _index.md │ │ │ └── avatar.jpg │ │ ├── daniel │ │ │ ├── _index.md │ │ │ └── avatar.jpg │ │ ├── desiree │ │ │ ├── _index.md │ │ │ └── avatar.jpg │ │ ├── gwynn │ │ │ ├── _index.md │ │ │ └── avatar.jpg │ │ ├── hasse │ │ │ ├── _index.md │ │ │ └── avatar.JPG │ │ └── josiah │ │ │ ├── _index.md │ │ │ └── avatar.jpg │ ├── home │ │ ├── hero.md │ │ └── index.md │ ├── info │ │ ├── contact.md │ │ └── index.md │ ├── license.md │ ├── materials │ │ ├── 00 │ │ │ ├── index.Rmd │ │ │ └── index.html │ │ ├── 01 │ │ │ ├── index.Rmd │ │ │ └── index.html │ │ ├── 02 │ │ │ ├── index.Rmd │ │ │ └── index.html │ │ ├── 03 │ │ │ ├── index.Rmd │ │ │ └── index.html │ │ ├── 04 │ │ │ ├── index.Rmd │ │ │ └── index.html │ │ ├── 05 │ │ │ ├── index.Rmd │ │ │ └── index.html │ │ ├── 06 │ │ │ ├── index.Rmd │ │ │ └── index.html │ │ ├── 07 │ │ │ ├── index.Rmd │ │ │ └── index.html │ │ ├── 08 │ │ │ ├── index.Rmd │ │ │ └── index.html │ │ ├── 09 │ │ │ ├── index.Rmd │ │ │ ├── index.html │ │ │ └── tm-functions.csv │ │ └── _index.md │ ├── people │ │ ├── index.md │ │ └── people.md │ ├── post │ │ ├── 2015-07-23-r-rmarkdown.Rmd │ │ ├── 2015-07-23-r-rmarkdown.html │ │ ├── _index.md │ │ ├── getting-started │ │ │ ├── featured.jpg │ │ │ └── index.md │ │ ├── jupyter │ │ │ ├── featured.png │ │ │ ├── index.ipynb │ │ │ ├── index.md │ │ │ └── index_1_0.png │ │ └── writing-technical-content │ │ │ ├── featured.jpg │ │ │ └── index.md │ └── prework │ │ ├── index.Rmd │ │ └── index.html ├── data │ ├── fonts │ │ └── conf_2020.toml │ └── themes │ │ └── conf_2020.toml ├── index.Rmd ├── layouts │ └── partials │ │ ├── li_compact.html │ │ ├── li_list.html │ │ ├── site_footer.html │ │ └── site_js.html ├── resources │ └── _gen │ │ ├── assets │ │ └── scss │ │ │ └── scss │ │ │ ├── main.scss_6c95cc1249b26b124274204dbf970c34.content │ │ │ └── main.scss_6c95cc1249b26b124274204dbf970c34.json │ │ └── images │ │ ├── authors │ │ ├── Untitled │ │ │ └── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ ├── admin │ │ │ ├── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ │ └── avatar_hu700675a3593f2196f90a24bec185a055_242650_270x270_fill_q90_lanczos_center.jpg │ │ ├── admin2 │ │ │ └── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ ├── alison │ │ │ ├── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ │ └── avatar_hu700675a3593f2196f90a24bec185a055_242650_270x270_fill_q90_lanczos_center.jpg │ │ ├── daniel │ │ │ ├── avatar_hu1fae6c131542a15bce12f92e02a28104_190948_270x270_fill_q90_lanczos_center.jpg │ │ │ └── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ ├── desiree │ │ │ ├── avatar_hu50c085a93b210389fa04ea993ea58292_368966_270x270_fill_q90_lanczos_center.jpg │ │ │ └── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ ├── gwynn │ │ │ ├── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ │ └── avatar_hue9a1cc48f6c2de615f20fe6b3fe60819_6809_270x270_fill_q90_lanczos_center.jpg │ │ ├── hasse │ │ │ ├── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ │ └── avatar_hu67b15e18ac712dd30eb97ae26f63396a_955452_270x270_fill_q90_lanczos_center.JPG │ │ └── josiah │ │ │ ├── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ │ └── avatar_hu967430328551f2448a57920e31d4acdf_2667233_270x270_fill_q90_lanczos_center.jpg │ │ ├── home │ │ └── gallery │ │ │ └── gallery │ │ │ ├── theme-1950s_huaf5482f8cea0c5a703a328640e3b7509_21614_0x190_resize_lanczos_2.png │ │ │ ├── theme-apogee_hu4b45d99db97150df01464c393bfd17d4_24119_0x190_resize_lanczos_2.png │ │ │ ├── theme-coffee-playfair_hu446a8f670cc5622adcc77b97ba95f6c5_22462_0x190_resize_lanczos_2.png │ │ │ ├── theme-dark_hu1e8601ecc47f58eada7743fdcd709d3d_21456_0x190_resize_lanczos_2.png │ │ │ ├── theme-default_huba6228b7bdf30e2f03f12ea91b2cba0d_21751_0x190_resize_lanczos_2.png │ │ │ ├── theme-forest_hu4f093a1c683134431456584193ea41ee_21797_0x190_resize_lanczos_2.png │ │ │ ├── theme-ocean_hu14831ccafc2219f30a7a096fa7617e01_21760_0x190_resize_lanczos_2.png │ │ │ └── theme-strawberry_hu36b0b347fcca08bd39e2df22dcedbdfb_39532_0x190_resize_lanczos_2.png │ │ ├── images │ │ ├── icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_192x192_fill_lanczos_center_2.png │ │ ├── icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_32x32_fill_lanczos_center_2.png │ │ └── icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_2.png │ │ ├── logo_hu2d91dc1fa1fe958232e3bf03236d431c_41848_0x70_resize_lanczos_2.png │ │ ├── post │ │ ├── getting-started │ │ │ ├── featured_hub9ee31969f44a6711206a2baf9f065b4_241861_1200x0_resize_q90_lanczos.jpg │ │ │ └── featured_hub9ee31969f44a6711206a2baf9f065b4_241861_150x0_resize_q90_lanczos.jpg │ │ ├── jupyter │ │ │ ├── featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_150x0_resize_lanczos_2.png │ │ │ └── featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_720x0_resize_lanczos_2.png │ │ └── writing-technical-content │ │ │ ├── featured_huc72159e0fc0d14b85f60d34436a630f0_266353_150x0_resize_q90_lanczos.jpg │ │ │ └── featured_huc72159e0fc0d14b85f60d34436a630f0_266353_2560x2560_fit_q90_lanczos.jpg │ │ ├── project │ │ ├── external-project │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_550x0_resize_q90_lanczos.jpg │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_720x0_resize_q90_lanczos.jpg │ │ └── internal-project │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_550x0_resize_q90_lanczos.jpg │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_720x0_resize_q90_lanczos.jpg │ │ ├── publication │ │ ├── conference-paper │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_150x0_resize_q90_lanczos.jpg │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_720x0_resize_q90_lanczos.jpg │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_918x517_fill_q90_lanczos_smart1.jpg │ │ ├── journal-article │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_150x0_resize_q90_lanczos.jpg │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_720x0_resize_q90_lanczos.jpg │ │ └── preprint │ │ │ ├── featured_hu559a5add5185b02575aa8333502ab2cc_220813_150x0_resize_q90_lanczos.jpg │ │ │ └── featured_hu559a5add5185b02575aa8333502ab2cc_220813_720x0_resize_q90_lanczos.jpg │ │ └── talk │ │ └── example │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_150x0_resize_q90_lanczos.jpg │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_720x0_resize_q90_lanczos.jpg ├── static │ ├── img │ │ ├── 2020-Conf-600x600.jpg │ │ ├── RStudio-Logo-Flat.png │ │ ├── icon-192.png │ │ ├── icon.png │ │ ├── logo.png │ │ └── robert-bye-678640-unsplash.jpg │ ├── post │ │ └── 2015-07-23-r-rmarkdown_files │ │ │ └── figure-html │ │ │ └── pie-1.png │ ├── rmarkdown-libs │ │ ├── crosstalk │ │ │ ├── css │ │ │ │ └── crosstalk.css │ │ │ └── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ ├── datatables-binding │ │ │ └── datatables.js │ │ ├── datatables-css │ │ │ └── datatables-crosstalk.css │ │ ├── dt-core-bootstrap │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.extra.css │ │ │ │ └── dataTables.bootstrap.min.css │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── dt-core │ │ │ ├── css │ │ │ │ ├── jquery.dataTables.extra.css │ │ │ │ └── jquery.dataTables.min.css │ │ │ └── js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── htmlwidgets │ │ │ └── htmlwidgets.js │ │ ├── jquery │ │ │ ├── LICENSE.txt │ │ │ └── jquery.min.js │ │ ├── nouislider │ │ │ ├── jquery.nouislider.min.css │ │ │ └── jquery.nouislider.min.js │ │ └── selectize │ │ │ ├── selectize.bootstrap3.css │ │ │ └── selectize.min.js │ └── slides │ │ ├── 00-Overview.Rmd │ │ ├── 00-Overview.html │ │ ├── 01-Predicting.Rmd │ │ ├── 01-Predicting.html │ │ ├── 02-Classifying.Rmd │ │ ├── 02-Classifying.html │ │ ├── 02-Classifying_files │ │ └── figure-html │ │ │ ├── dt-fig-1.svg │ │ │ ├── fit-knn-1.png │ │ │ ├── ggroc-1.png │ │ │ ├── knn-home1-1.png │ │ │ ├── knn-home2-1.png │ │ │ ├── knn-home2-10-1.png │ │ │ ├── knn-home2-25-1.png │ │ │ ├── knn-home2-50-1.png │ │ │ ├── lm-fig-1.svg │ │ │ ├── lr-fig-1.svg │ │ │ ├── rt-test-resid-1.png │ │ │ ├── underfit-knn-1.png │ │ │ ├── unnamed-chunk-1-1.svg │ │ │ ├── unnamed-chunk-13-1.png │ │ │ ├── unnamed-chunk-14-1.png │ │ │ ├── unnamed-chunk-2-1.svg │ │ │ ├── unnamed-chunk-26-1.png │ │ │ ├── unnamed-chunk-27-1.png │ │ │ ├── unnamed-chunk-29-1.png │ │ │ ├── unnamed-chunk-30-1.png │ │ │ ├── unnamed-chunk-32-1.png │ │ │ ├── unnamed-chunk-33-1.png │ │ │ ├── unnamed-chunk-34-1.png │ │ │ ├── unnamed-chunk-35-1.png │ │ │ ├── unnamed-chunk-38-1.png │ │ │ ├── unnamed-chunk-4-1.png │ │ │ ├── unnamed-chunk-41-1.png │ │ │ ├── unnamed-chunk-42-1.png │ │ │ ├── unnamed-chunk-43-1.png │ │ │ ├── unnamed-chunk-44-1.png │ │ │ ├── unnamed-chunk-45-1.png │ │ │ ├── unnamed-chunk-46-1.png │ │ │ ├── unnamed-chunk-5-1.png │ │ │ ├── unnamed-chunk-54-1.png │ │ │ ├── unnamed-chunk-70-1.png │ │ │ ├── unnamed-chunk-8-1.png │ │ │ ├── unnamed-chunk-9-1.svg │ │ │ ├── unnamed-chunk-90-1.png │ │ │ └── unnamed-chunk-91-1.png │ │ ├── 03-Resampling.Rmd │ │ ├── 03-Resampling.html │ │ ├── 03-Resampling │ │ ├── pop-plot-1.png │ │ ├── unnamed-chunk-10-1.png │ │ ├── unnamed-chunk-11-1.png │ │ ├── unnamed-chunk-12-1.png │ │ ├── unnamed-chunk-13-1.png │ │ ├── unnamed-chunk-14-1.png │ │ ├── unnamed-chunk-15-1.png │ │ ├── unnamed-chunk-16-1.png │ │ ├── unnamed-chunk-17-1.png │ │ ├── unnamed-chunk-18-1.png │ │ ├── unnamed-chunk-19-1.png │ │ ├── unnamed-chunk-2-1.png │ │ ├── unnamed-chunk-20-1.png │ │ ├── unnamed-chunk-21-1.png │ │ ├── unnamed-chunk-22-1.png │ │ ├── unnamed-chunk-23-1.png │ │ ├── unnamed-chunk-24-1.png │ │ ├── unnamed-chunk-25-1.png │ │ ├── unnamed-chunk-26-1.png │ │ ├── unnamed-chunk-27-1.png │ │ ├── unnamed-chunk-28-1.png │ │ ├── unnamed-chunk-29-1.png │ │ ├── unnamed-chunk-3-1.png │ │ ├── unnamed-chunk-30-1.png │ │ ├── unnamed-chunk-31-1.png │ │ ├── unnamed-chunk-32-1.png │ │ ├── unnamed-chunk-33-1.png │ │ ├── unnamed-chunk-34-1.png │ │ ├── unnamed-chunk-35-1.png │ │ ├── unnamed-chunk-36-1.png │ │ ├── unnamed-chunk-37-1.png │ │ ├── unnamed-chunk-37-2.png │ │ ├── unnamed-chunk-38-1.png │ │ ├── unnamed-chunk-38-2.png │ │ ├── unnamed-chunk-39-1.png │ │ ├── unnamed-chunk-4-1.png │ │ ├── unnamed-chunk-40-1.png │ │ ├── unnamed-chunk-41-1.png │ │ ├── unnamed-chunk-42-1.png │ │ ├── unnamed-chunk-43-1.png │ │ ├── unnamed-chunk-44-1.png │ │ ├── unnamed-chunk-45-1.png │ │ ├── unnamed-chunk-46-1.png │ │ ├── unnamed-chunk-47-1.png │ │ ├── unnamed-chunk-48-1.png │ │ ├── unnamed-chunk-49-1.png │ │ ├── unnamed-chunk-5-1.png │ │ ├── unnamed-chunk-50-1.png │ │ ├── unnamed-chunk-51-1.png │ │ ├── unnamed-chunk-6-1.png │ │ ├── unnamed-chunk-7-1.png │ │ └── unnamed-chunk-8-1.png │ │ ├── 04-Ensembling.Rmd │ │ ├── 04-Ensembling.html │ │ ├── 04-Ensembling_files │ │ └── figure-html │ │ │ ├── unnamed-chunk-13-1.png │ │ │ ├── unnamed-chunk-14-1.png │ │ │ ├── unnamed-chunk-15-1.png │ │ │ ├── unnamed-chunk-18-1.png │ │ │ ├── unnamed-chunk-25-1.png │ │ │ ├── unnamed-chunk-25-2.png │ │ │ ├── unnamed-chunk-25-3.png │ │ │ ├── unnamed-chunk-42-1.png │ │ │ └── unnamed-chunk-58-1.png │ │ ├── 05-Workflows.Rmd │ │ ├── 05-Workflows.html │ │ ├── 06-Recipes.Rmd │ │ ├── 06-Recipes.html │ │ ├── 07-CV.Rmd │ │ ├── 07-CV.html │ │ ├── 08-tune.Rmd │ │ ├── 08-tune.html │ │ ├── assets │ │ ├── css │ │ │ ├── my-fonts.css │ │ │ └── my-theme.css │ │ └── header.html │ │ ├── figs │ │ ├── 01-Predicting │ │ │ ├── all-split-1.png │ │ │ ├── lm-predict-1.png │ │ │ ├── lm-resid-1.png │ │ │ ├── lm-test-resid-1.png │ │ │ ├── unnamed-chunk-26-1.png │ │ │ ├── unnamed-chunk-27-1.png │ │ │ ├── unnamed-chunk-29-1.png │ │ │ ├── unnamed-chunk-30-1.png │ │ │ ├── unnamed-chunk-31-1.png │ │ │ ├── unnamed-chunk-33-1.png │ │ │ ├── unnamed-chunk-34-1.png │ │ │ ├── unnamed-chunk-35-1.png │ │ │ ├── unnamed-chunk-35-2.png │ │ │ ├── unnamed-chunk-37-1.png │ │ │ ├── unnamed-chunk-38-1.png │ │ │ ├── unnamed-chunk-46-1.png │ │ │ ├── unnamed-chunk-48-1.png │ │ │ ├── unnamed-chunk-49-1.png │ │ │ ├── unnamed-chunk-50-1.png │ │ │ ├── unnamed-chunk-51-1.png │ │ │ ├── unnamed-chunk-52-1.png │ │ │ ├── unnamed-chunk-53-1.png │ │ │ ├── unnamed-chunk-54-1.png │ │ │ ├── unnamed-chunk-55-1.png │ │ │ ├── unnamed-chunk-56-1.png │ │ │ └── unnamed-chunk-57-1.png │ │ ├── 02-Recipes │ │ │ ├── uni-biscatter-1.png │ │ │ ├── unnamed-chunk-3-1.png │ │ │ ├── unnamed-chunk-49-1.png │ │ │ ├── unnamed-chunk-51-1.png │ │ │ ├── unnamed-chunk-52-1.png │ │ │ ├── unnamed-chunk-53-1.png │ │ │ └── unnamed-chunk-56-1.png │ │ ├── 03-cv │ │ │ ├── bootstrap-1.png │ │ │ ├── loocv-1.png │ │ │ ├── mccv-1.png │ │ │ ├── unnamed-chunk-11-1.png │ │ │ ├── unnamed-chunk-12-1.png │ │ │ ├── unnamed-chunk-13-1.png │ │ │ ├── unnamed-chunk-14-1.png │ │ │ ├── unnamed-chunk-15-1.png │ │ │ ├── unnamed-chunk-16-1.png │ │ │ ├── unnamed-chunk-17-1.png │ │ │ ├── unnamed-chunk-18-1.png │ │ │ ├── unnamed-chunk-19-1.png │ │ │ ├── unnamed-chunk-20-1.png │ │ │ ├── unnamed-chunk-21-1.png │ │ │ ├── unnamed-chunk-22-1.png │ │ │ ├── unnamed-chunk-23-1.png │ │ │ ├── unnamed-chunk-24-1.png │ │ │ ├── unnamed-chunk-25-1.png │ │ │ ├── unnamed-chunk-26-1.png │ │ │ ├── unnamed-chunk-27-1.png │ │ │ ├── unnamed-chunk-34-1.png │ │ │ ├── unnamed-chunk-50-1.png │ │ │ └── vfold-tiles-1.png │ │ └── 04-Tune │ │ │ ├── knn-plot-1.png │ │ │ ├── unnamed-chunk-21-1.png │ │ │ └── unnamed-chunk-40-1.png │ │ ├── images │ │ ├── 2020-logo.png │ │ ├── 538-1.png │ │ ├── 538-2.png │ │ ├── adi-goldstein-mDinBvq1Sfg-unsplash.jpg │ │ ├── anim_split.gif │ │ ├── animal-groups.jpg │ │ ├── animals.jpg │ │ ├── annotated-tree │ │ │ ├── annotated-tree.001.png │ │ │ ├── annotated-tree.002.png │ │ │ ├── annotated-tree.003.png │ │ │ ├── annotated-tree.004.png │ │ │ └── annotated-tree.005.png │ │ ├── artificial-intelligence-4417279_1920.jpg │ │ ├── aus-challenge-animals.png │ │ ├── aus-challenge-tree.png │ │ ├── aus-standard-animals.png │ │ ├── aus-standard-tree.png │ │ ├── bonsai-anatomy-flip.jpg │ │ ├── bonsai-anatomy.jpg │ │ ├── conf-matrix │ │ │ ├── conf-matrix.001.jpeg │ │ │ ├── conf-matrix.002.jpeg │ │ │ ├── conf-matrix.003.jpeg │ │ │ ├── conf-matrix.004.jpeg │ │ │ ├── conf-matrix.005.jpeg │ │ │ ├── conf-matrix.006.jpeg │ │ │ ├── conf-matrix.007.jpeg │ │ │ ├── conf-matrix.008.jpeg │ │ │ ├── conf-matrix.009.jpeg │ │ │ ├── sens-spec.jpeg │ │ │ ├── sens.jpeg │ │ │ └── spec.jpeg │ │ ├── copyingandpasting-big.png │ │ ├── cv-match.jpeg │ │ ├── cv.gif │ │ ├── daan-mooij-91LGCVN5SAI-unsplash.jpg │ │ ├── ensemble │ │ │ ├── ensemble.001.jpeg │ │ │ ├── ensemble.002.jpeg │ │ │ ├── ensemble.003.jpeg │ │ │ ├── ensemble.004.jpeg │ │ │ ├── ensemble.005.jpeg │ │ │ ├── ensemble.006.jpeg │ │ │ ├── ensemble.007.jpeg │ │ │ ├── ensemble.008.jpeg │ │ │ └── ensemble.009.jpeg │ │ ├── hello-red.jpg │ │ ├── hello.jpg │ │ ├── horse_black_mane.png │ │ ├── intro │ │ │ ├── intro.001.jpeg │ │ │ ├── intro.002.jpeg │ │ │ ├── intro.003.jpeg │ │ │ └── intro.004.jpeg │ │ ├── kari-shea-AVqh83jStMA-unsplash.jpg │ │ ├── listcols.001.jpeg │ │ ├── listcols.002.jpeg │ │ ├── listcols.003.jpeg │ │ ├── listcols.004.jpeg │ │ ├── marriage.jpg │ │ ├── ml-01 │ │ │ ├── ml-01.001.jpeg │ │ │ ├── ml-01.002.jpeg │ │ │ ├── ml-01.003.jpeg │ │ │ ├── ml-01.004.jpeg │ │ │ ├── ml-01.005.jpeg │ │ │ └── ml-01.006.jpeg │ │ ├── modeling.jpeg │ │ ├── orchestra.jpg │ │ ├── overfit-tree.png │ │ ├── parker-johnson-v0OWc_skg0g-unsplash.jpg │ │ ├── pca │ │ │ ├── pca.001.jpeg │ │ │ ├── pca.002.jpeg │ │ │ ├── pca.003.jpeg │ │ │ ├── pca.004.jpeg │ │ │ └── pca.005.jpeg │ │ ├── pink-thunder.png │ │ ├── predicting │ │ │ ├── predicting.001.jpeg │ │ │ ├── predicting.002.jpeg │ │ │ ├── predicting.003.jpeg │ │ │ ├── predicting.004.jpeg │ │ │ ├── predicting.005.jpeg │ │ │ ├── predicting.006.jpeg │ │ │ ├── predicting.007.jpeg │ │ │ ├── predicting.008.jpeg │ │ │ ├── predicting.009.jpeg │ │ │ └── predicting.010.jpeg │ │ ├── recipe-hex │ │ │ ├── recipe-hex.001.jpeg │ │ │ ├── recipe-hex.002.jpeg │ │ │ ├── recipe-hex.003.jpeg │ │ │ ├── recipe-hex.004.jpeg │ │ │ ├── recipe-hex.005.jpeg │ │ │ └── recipe-hex.006.jpeg │ │ ├── recipes.png │ │ ├── robert-bye-678640-unsplash.jpg │ │ ├── roc-bad.png │ │ ├── roc-guessing.png │ │ ├── roc-ok.png │ │ ├── roc-perfect.png │ │ ├── roc-pretty-good.png │ │ ├── roofs.jpg │ │ ├── rsp-step1.png │ │ ├── sad_unicorn.png │ │ ├── shed.jpeg │ │ ├── sing-tree.png │ │ ├── so-dev-survey.png │ │ ├── tidymodels-hex │ │ │ ├── tidymodels-hex.001.jpeg │ │ │ ├── tidymodels-hex.002.jpeg │ │ │ ├── tidymodels-hex.003.jpeg │ │ │ ├── tidymodels-hex.004.jpeg │ │ │ ├── tidymodels-hex.005.jpeg │ │ │ └── tidymodels-hex.006.jpeg │ │ ├── unicorn_horn.png │ │ ├── unicorns-rainbows │ │ │ ├── beer.jpg │ │ │ ├── book.jpg │ │ │ ├── boot.jpg │ │ │ ├── bottle.jpg │ │ │ ├── cards.jpg │ │ │ ├── joshua-hoehne-wnHeb_pRJBo-unsplash.jpg │ │ │ ├── lunch.jpg │ │ │ ├── pjs.jpg │ │ │ ├── puzzle.jpg │ │ │ ├── quilt.jpg │ │ │ ├── sheets.jpg │ │ │ ├── snowglobe.jpg │ │ │ ├── unicorns.001.jpeg │ │ │ ├── unicorns.002.jpeg │ │ │ ├── unicorns.003.jpeg │ │ │ ├── unicorns.004.jpeg │ │ │ ├── unicorns.005.jpeg │ │ │ └── unicorns.006.jpeg │ │ ├── vartypes_answers.png │ │ ├── vartypes_quiz.png │ │ ├── vartypes_unicorn.jpeg │ │ ├── vfoldcv │ │ │ ├── vfoldcv.001.jpeg │ │ │ ├── vfoldcv.002.jpeg │ │ │ ├── vfoldcv.003.jpeg │ │ │ ├── vfoldcv.004.jpeg │ │ │ └── vfoldcv.005.jpeg │ │ ├── workflows │ │ │ ├── workflows.001.jpeg │ │ │ ├── workflows.002.jpeg │ │ │ ├── workflows.003.jpeg │ │ │ ├── workflows.004.jpeg │ │ │ ├── workflows.005.jpeg │ │ │ ├── workflows.006.jpeg │ │ │ ├── workflows.007.jpeg │ │ │ ├── workflows.008.jpeg │ │ │ ├── workflows.009.jpeg │ │ │ ├── workflows.010.jpeg │ │ │ ├── workflows.011.jpeg │ │ │ ├── workflows.012.jpeg │ │ │ └── workflows.013.jpeg │ │ ├── zestimate.png │ │ └── zillow.jpeg │ │ └── libs │ │ ├── countdown │ │ ├── countdown.css │ │ ├── countdown.js │ │ └── smb_stage_clear.mp3 │ │ └── remark-css │ │ └── default.css └── themes │ └── hugo-academic │ ├── .editorconfig │ ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── bug-report.md │ │ └── feature-request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── contributing.md │ ├── stale.yml │ └── support.md │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── academic.png │ ├── archetypes │ ├── authors │ │ ├── _index.md │ │ └── avatar.jpg │ ├── default.md │ ├── docs.md │ ├── home.md │ ├── post │ │ └── index.md │ ├── project │ │ └── index.md │ ├── publication │ │ └── index.md │ ├── slides │ │ └── index.md │ └── talk │ │ └── index.md │ ├── assets │ ├── css │ │ ├── reveal.css │ │ └── reveal_custom.css │ ├── images │ │ └── icon.png │ ├── js │ │ ├── academic-search.js │ │ ├── academic.js │ │ ├── algolia-search.js │ │ ├── mathjax-config.js │ │ └── vendor │ │ │ └── bootstrap.min.js │ └── scss │ │ ├── academic │ │ ├── _card.scss │ │ ├── _content.scss │ │ ├── _dark.scss │ │ ├── _docs.scss │ │ ├── _integrations.scss │ │ ├── _listings.scss │ │ ├── _nav.scss │ │ ├── _root.scss │ │ ├── _search.scss │ │ ├── _widgets.scss │ │ └── academic.scss │ │ ├── bootstrap_variables.scss │ │ ├── custom.scss │ │ ├── main.scss │ │ └── vendor │ │ └── bootstrap │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ ├── _alert.scss │ │ ├── _background-variant.scss │ │ ├── _badge.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _deprecate.scss │ │ ├── _float.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _nav-divider.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _screen-reader.scss │ │ ├── _size.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-hide.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ └── _visibility.scss │ │ ├── utilities │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _borders.scss │ │ ├── _clearfix.scss │ │ ├── _display.scss │ │ ├── _embed.scss │ │ ├── _flex.scss │ │ ├── _float.scss │ │ ├── _overflow.scss │ │ ├── _position.scss │ │ ├── _screenreaders.scss │ │ ├── _shadows.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ ├── _stretched-link.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ │ └── vendor │ │ └── _rfs.scss │ ├── data │ ├── academic.toml │ ├── assets.toml │ ├── fonts │ │ ├── classic.toml │ │ ├── minimal.toml │ │ ├── mr_robot.toml │ │ └── rose.toml │ ├── i18n │ │ └── languages.yaml │ ├── page_sharer.toml │ ├── publication_types.toml │ └── themes │ │ ├── 1950s.toml │ │ ├── apogee.toml │ │ ├── coffee.toml │ │ ├── dark.toml │ │ ├── forest.toml │ │ ├── minimal.toml │ │ ├── mr_robot.toml │ │ ├── ocean.toml │ │ ├── rose.toml │ │ └── strawberry.toml │ ├── exampleSite │ ├── config │ │ └── _default │ │ │ ├── config.toml │ │ │ ├── languages.toml │ │ │ ├── menus.toml │ │ │ └── params.toml │ ├── content │ │ ├── authors │ │ │ └── admin │ │ │ │ ├── _index.md │ │ │ │ └── avatar.jpg │ │ ├── courses │ │ │ ├── _index.md │ │ │ └── example │ │ │ │ ├── _index.md │ │ │ │ ├── example1.md │ │ │ │ └── example2.md │ │ ├── home │ │ │ ├── about.md │ │ │ ├── accomplishments.md │ │ │ ├── contact.md │ │ │ ├── demo.md │ │ │ ├── experience.md │ │ │ ├── featured.md │ │ │ ├── gallery │ │ │ │ ├── gallery │ │ │ │ │ ├── theme-1950s.png │ │ │ │ │ ├── theme-apogee.png │ │ │ │ │ ├── theme-coffee-playfair.png │ │ │ │ │ ├── theme-dark.png │ │ │ │ │ ├── theme-default.png │ │ │ │ │ ├── theme-forest.png │ │ │ │ │ ├── theme-ocean.png │ │ │ │ │ └── theme-strawberry.png │ │ │ │ └── index.md │ │ │ ├── hero.md │ │ │ ├── index.md │ │ │ ├── people.md │ │ │ ├── posts.md │ │ │ ├── projects.md │ │ │ ├── publications.md │ │ │ ├── skills.md │ │ │ ├── slider.md │ │ │ ├── tags.md │ │ │ └── talks.md │ │ ├── post │ │ │ ├── _index.md │ │ │ ├── getting-started │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ ├── jupyter │ │ │ │ ├── featured.png │ │ │ │ ├── index.ipynb │ │ │ │ ├── index.md │ │ │ │ └── index_1_0.png │ │ │ └── writing-technical-content │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ ├── privacy.md │ │ ├── project │ │ │ ├── external-project │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ └── internal-project │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ ├── publication │ │ │ ├── _index.md │ │ │ ├── conference-paper │ │ │ │ ├── cite.bib │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ ├── journal-article │ │ │ │ ├── cite.bib │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ │ └── preprint │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ ├── slides │ │ │ └── example │ │ │ │ └── index.md │ │ ├── talk │ │ │ ├── _index.md │ │ │ └── example │ │ │ │ ├── featured.jpg │ │ │ │ └── index.md │ │ └── terms.md │ ├── resources │ │ └── _gen │ │ │ ├── assets │ │ │ └── scss │ │ │ │ └── scss │ │ │ │ ├── main.scss_6c95cc1249b26b124274204dbf970c34.content │ │ │ │ └── main.scss_6c95cc1249b26b124274204dbf970c34.json │ │ │ └── images │ │ │ ├── authors │ │ │ ├── admin │ │ │ │ └── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ │ └── admin2 │ │ │ │ └── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ │ ├── home │ │ │ └── gallery │ │ │ │ └── gallery │ │ │ │ ├── theme-1950s_huaf5482f8cea0c5a703a328640e3b7509_21614_0x190_resize_lanczos_2.png │ │ │ │ ├── theme-apogee_hu4b45d99db97150df01464c393bfd17d4_24119_0x190_resize_lanczos_2.png │ │ │ │ ├── theme-coffee-playfair_hu446a8f670cc5622adcc77b97ba95f6c5_22462_0x190_resize_lanczos_2.png │ │ │ │ ├── theme-dark_hu1e8601ecc47f58eada7743fdcd709d3d_21456_0x190_resize_lanczos_2.png │ │ │ │ ├── theme-default_huba6228b7bdf30e2f03f12ea91b2cba0d_21751_0x190_resize_lanczos_2.png │ │ │ │ ├── theme-forest_hu4f093a1c683134431456584193ea41ee_21797_0x190_resize_lanczos_2.png │ │ │ │ ├── theme-ocean_hu14831ccafc2219f30a7a096fa7617e01_21760_0x190_resize_lanczos_2.png │ │ │ │ └── theme-strawberry_hu36b0b347fcca08bd39e2df22dcedbdfb_39532_0x190_resize_lanczos_2.png │ │ │ ├── images │ │ │ ├── icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_192x192_fill_lanczos_center_2.png │ │ │ ├── icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_32x32_fill_lanczos_center_2.png │ │ │ └── icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_2.png │ │ │ ├── post │ │ │ ├── getting-started │ │ │ │ ├── featured_hub9ee31969f44a6711206a2baf9f065b4_241861_1200x0_resize_q90_lanczos.jpg │ │ │ │ └── featured_hub9ee31969f44a6711206a2baf9f065b4_241861_150x0_resize_q90_lanczos.jpg │ │ │ ├── jupyter │ │ │ │ ├── featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_150x0_resize_lanczos_2.png │ │ │ │ └── featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_720x0_resize_lanczos_2.png │ │ │ └── writing-technical-content │ │ │ │ ├── featured_huc72159e0fc0d14b85f60d34436a630f0_266353_150x0_resize_q90_lanczos.jpg │ │ │ │ └── featured_huc72159e0fc0d14b85f60d34436a630f0_266353_2560x2560_fit_q90_lanczos.jpg │ │ │ ├── project │ │ │ ├── external-project │ │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_550x0_resize_q90_lanczos.jpg │ │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_720x0_resize_q90_lanczos.jpg │ │ │ └── internal-project │ │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_550x0_resize_q90_lanczos.jpg │ │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_720x0_resize_q90_lanczos.jpg │ │ │ ├── publication │ │ │ ├── conference-paper │ │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_150x0_resize_q90_lanczos.jpg │ │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_720x0_resize_q90_lanczos.jpg │ │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_918x517_fill_q90_lanczos_smart1.jpg │ │ │ ├── journal-article │ │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_150x0_resize_q90_lanczos.jpg │ │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_720x0_resize_q90_lanczos.jpg │ │ │ └── preprint │ │ │ │ ├── featured_hu559a5add5185b02575aa8333502ab2cc_220813_150x0_resize_q90_lanczos.jpg │ │ │ │ └── featured_hu559a5add5185b02575aa8333502ab2cc_220813_720x0_resize_q90_lanczos.jpg │ │ │ └── talk │ │ │ └── example │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_150x0_resize_q90_lanczos.jpg │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_720x0_resize_q90_lanczos.jpg │ └── static │ │ └── img │ │ ├── boards.jpg │ │ ├── headers │ │ └── bubbles-wide.jpg │ │ └── hero-academic.png │ ├── i18n │ ├── ca.yaml │ ├── da.yaml │ ├── de.yaml │ ├── el.yaml │ ├── en.yaml │ ├── es.yaml │ ├── et.yaml │ ├── eu.yaml │ ├── fr.yaml │ ├── hu.yaml │ ├── id.yaml │ ├── it.yaml │ ├── ja.yaml │ ├── km.yaml │ ├── ko.yaml │ ├── nl.yaml │ ├── pl.yaml │ ├── pt.yaml │ ├── ro.yaml │ ├── ru.yaml │ ├── sv.yaml │ ├── tr.yaml │ ├── uk.yaml │ ├── vi.yaml │ ├── zh-Hant.yaml │ └── zh.yaml │ ├── images │ ├── screenshot.png │ ├── theme-1950s.png │ ├── theme-apogee.png │ ├── theme-coffee-playfair.png │ ├── theme-cupcake.png │ ├── theme-dark.png │ ├── theme-default.png │ ├── theme-forest.png │ ├── theme-ocean.png │ ├── theme-spacer.png │ ├── theme-strawberry.png │ ├── themes.png │ └── tn.png │ ├── layouts │ ├── 404.html │ ├── _default │ │ ├── _markup │ │ │ └── render-link.html │ │ ├── baseof.html │ │ ├── list.html │ │ ├── rss.xml │ │ └── single.html │ ├── authors │ │ ├── list.html │ │ └── terms.html │ ├── docs │ │ ├── list.html │ │ └── single.html │ ├── index.html │ ├── index.json │ ├── index.webmanifest │ ├── partials │ │ ├── citation.html │ │ ├── comments.html │ │ ├── comments │ │ │ ├── commento.html │ │ │ └── disqus.html │ │ ├── cookie_consent.html │ │ ├── custom_head.html │ │ ├── custom_js.html │ │ ├── docs_layout.html │ │ ├── docs_sidebar.html │ │ ├── docs_toc_foot.html │ │ ├── functions │ │ │ ├── get_address.html │ │ │ ├── get_author_name.html │ │ │ ├── get_event_dates.html │ │ │ ├── get_icon.html │ │ │ ├── get_logo.html │ │ │ ├── get_pub_types.html │ │ │ └── parse_theme.html │ │ ├── jsonld │ │ │ ├── article.html │ │ │ ├── business.html │ │ │ ├── event.html │ │ │ ├── main.html │ │ │ └── website.html │ │ ├── li_card.html │ │ ├── li_citation.html │ │ ├── li_compact.html │ │ ├── li_list.html │ │ ├── marketing │ │ │ ├── google_analytics.html │ │ │ └── google_tag_manager.html │ │ ├── navbar.html │ │ ├── page_author.html │ │ ├── page_edit.html │ │ ├── page_footer.html │ │ ├── page_header.html │ │ ├── page_links.html │ │ ├── page_links_div.html │ │ ├── page_metadata.html │ │ ├── page_metadata_authors.html │ │ ├── pagination.html │ │ ├── portfolio_li_card.html │ │ ├── portfolio_li_compact.html │ │ ├── portfolio_li_list.html │ │ ├── portfolio_li_showcase.html │ │ ├── search.html │ │ ├── section_pager.html │ │ ├── share.html │ │ ├── site_footer.html │ │ ├── site_head.html │ │ ├── site_js.html │ │ ├── slides.html │ │ ├── social_links.html │ │ ├── tags.html │ │ ├── widget_page.html │ │ └── widgets │ │ │ ├── about.html │ │ │ ├── accomplishments.html │ │ │ ├── blank.html │ │ │ ├── contact.html │ │ │ ├── experience.html │ │ │ ├── featured.html │ │ │ ├── featurette.html │ │ │ ├── hero.html │ │ │ ├── pages.html │ │ │ ├── people.html │ │ │ ├── portfolio.html │ │ │ ├── slider.html │ │ │ └── tag_cloud.html │ ├── project │ │ └── single.html │ ├── publication │ │ └── single.html │ ├── section │ │ ├── docs.html │ │ ├── post.html │ │ ├── publication.html │ │ └── talk.html │ ├── shortcodes │ │ ├── alert.html │ │ ├── diagram.html │ │ ├── figure.html │ │ ├── fragment.html │ │ ├── gallery.html │ │ ├── gdocs.html │ │ ├── hl.html │ │ ├── list_categories.html │ │ ├── list_tags.html │ │ ├── mention.html │ │ ├── slide.html │ │ ├── speaker_note.html │ │ ├── staticref.html │ │ ├── toc.html │ │ └── video.html │ ├── slides │ │ ├── baseof.html │ │ ├── list.html │ │ └── single.html │ ├── talk │ │ └── single.html │ └── widget_page │ │ └── single.html │ ├── netlify.toml │ ├── package-lock.json │ ├── package.json │ ├── scripts │ ├── gen_demo_resources.sh │ ├── list_language_packs.py │ ├── sync_i18n.py │ ├── update_bootstrap.sh │ └── view_demo.sh │ ├── static │ └── js │ │ └── vendor │ │ └── reveal.js │ │ └── plugin │ │ └── notes │ │ ├── notes.html │ │ └── notes.js │ └── theme.toml └── workshop-conf-2020.Rproj /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | .Ruserdata 5 | .DS_Store 6 | site/public/ 7 | -------------------------------------------------------------------------------- /materials/data/stackoverflow.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/materials/data/stackoverflow.rds -------------------------------------------------------------------------------- /materials/handouts/00-what-is-ml-handout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/materials/handouts/00-what-is-ml-handout.pdf -------------------------------------------------------------------------------- /materials/handouts/01-predicting-handout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/materials/handouts/01-predicting-handout.pdf -------------------------------------------------------------------------------- /materials/handouts/03-resampling-handout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/materials/handouts/03-resampling-handout.pdf -------------------------------------------------------------------------------- /materials/handouts/04-ensembling-handout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/materials/handouts/04-ensembling-handout.pdf -------------------------------------------------------------------------------- /materials/handouts/07-cv-handout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/materials/handouts/07-cv-handout.pdf -------------------------------------------------------------------------------- /materials/handouts/images/cv-blanks.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/materials/handouts/images/cv-blanks.jpeg -------------------------------------------------------------------------------- /materials/handouts/images/cv-match.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/materials/handouts/images/cv-match.jpeg -------------------------------------------------------------------------------- /materials/handouts/images/ensembling.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/materials/handouts/images/ensembling.jpeg -------------------------------------------------------------------------------- /materials/handouts/images/statistical-modeling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/materials/handouts/images/statistical-modeling.png -------------------------------------------------------------------------------- /site/R/build.R: -------------------------------------------------------------------------------- 1 | blogdown::build_dir('static') 2 | -------------------------------------------------------------------------------- /site/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/assets/images/logo.png -------------------------------------------------------------------------------- /site/content/authors/alison/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/content/authors/alison/avatar.jpg -------------------------------------------------------------------------------- /site/content/authors/daniel/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/content/authors/daniel/avatar.jpg -------------------------------------------------------------------------------- /site/content/authors/desiree/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/content/authors/desiree/avatar.jpg -------------------------------------------------------------------------------- /site/content/authors/gwynn/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/content/authors/gwynn/avatar.jpg -------------------------------------------------------------------------------- /site/content/authors/hasse/avatar.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/content/authors/hasse/avatar.JPG -------------------------------------------------------------------------------- /site/content/authors/josiah/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/content/authors/josiah/avatar.jpg -------------------------------------------------------------------------------- /site/content/home/index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # Homepage 3 | type = "widget_page" 4 | headless = true # Homepage is headless, other widget pages are not. 5 | +++ 6 | -------------------------------------------------------------------------------- /site/content/materials/00/index.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Session 00: Welcome & Introduction' 3 | draft: false 4 | slug: 00-welcome 5 | categories: [] 6 | tags: [] 7 | featured: no 8 | projects: [] 9 | weight: 1 10 | links: 11 | - icon: images 12 | icon_pack: fas 13 | name: slides 14 | url: /slides/00-overview.html 15 | --- 16 | 17 | 18 | ```{r echo=FALSE} 19 | knitr::include_url("/slides/00-overview.html") 20 | ``` 21 | -------------------------------------------------------------------------------- /site/content/materials/00/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Session 00: Welcome & Introduction' 3 | draft: false 4 | slug: 00-welcome 5 | categories: [] 6 | tags: [] 7 | featured: no 8 | projects: [] 9 | weight: 1 10 | links: 11 | - icon: images 12 | icon_pack: fas 13 | name: slides 14 | url: /slides/00-overview.html 15 | --- 16 | 17 | 18 | 19 | 21 | -------------------------------------------------------------------------------- /site/content/materials/03/index.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Session 03: Sampling & Resampling' 3 | draft: false 4 | date: '2019-08-29' 5 | categories: [] 6 | tags: [] 7 | lastmod: '2019-09-09T11:21:55-07:00' 8 | featured: no 9 | projects: [] 10 | weight: 4 11 | links: 12 | - icon: images 13 | icon_pack: fas 14 | name: slides 15 | url: /slides/03-resampling.html 16 | --- 17 | 18 | ```{r echo=FALSE} 19 | knitr::include_url("/slides/03-resampling.html") 20 | ``` 21 | -------------------------------------------------------------------------------- /site/content/materials/03/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Session 03: Sampling & Resampling' 3 | draft: false 4 | date: '2019-08-29' 5 | categories: [] 6 | tags: [] 7 | lastmod: '2019-09-09T11:21:55-07:00' 8 | featured: no 9 | projects: [] 10 | weight: 4 11 | links: 12 | - icon: images 13 | icon_pack: fas 14 | name: slides 15 | url: /slides/03-resampling.html 16 | --- 17 | 18 | 19 | 20 | 22 | -------------------------------------------------------------------------------- /site/content/materials/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | header: 3 | caption: "" 4 | image: "" 5 | title: "Workshop materials" 6 | view: 1 7 | layout: post 8 | --- 9 | -------------------------------------------------------------------------------- /site/content/people/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "People" # Add a page title. 3 | summary: "Instructors and Teaching Assistants" # Add a page description. 4 | date: "2019-01-01T00:00:00Z" # Add today's date. 5 | type: "widget_page" # Page type is a Widget Page 6 | --- 7 | -------------------------------------------------------------------------------- /site/content/post/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | header: 3 | caption: "" 4 | image: "" 5 | title: Posts 6 | view: 2 7 | --- 8 | -------------------------------------------------------------------------------- /site/content/post/getting-started/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/content/post/getting-started/featured.jpg -------------------------------------------------------------------------------- /site/content/post/jupyter/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/content/post/jupyter/featured.png -------------------------------------------------------------------------------- /site/content/post/jupyter/index_1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/content/post/jupyter/index_1_0.png -------------------------------------------------------------------------------- /site/content/post/writing-technical-content/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/content/post/writing-technical-content/featured.jpg -------------------------------------------------------------------------------- /site/data/fonts/conf_2020.toml: -------------------------------------------------------------------------------- 1 | # Font style metadata 2 | name = "conf_2020" 3 | 4 | # Optional Google font URL 5 | google_fonts = "Karla:400,400i,700,700i|IBM+Plex+Mono" 6 | 7 | # Font families 8 | heading_font = "Karla" 9 | body_font = "Karla" 10 | nav_font = "Karla" 11 | mono_font = "IBM Plex Mono" 12 | 13 | # Font size 14 | font_size = "20" 15 | font_size_small = "16" 16 | -------------------------------------------------------------------------------- /site/data/themes/conf_2020.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "conf_2020" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary ="#E7553C" 9 | primary_light = "rgba(231,85,60,.8)" 10 | primary_dark = "rgba(231,85,60,.8)" 11 | 12 | # Links 13 | link = "#E7553C" 14 | link_hover = "rgba(231,85,60,.8)" 15 | 16 | # Menu 17 | menu_primary = "#E7553C" 18 | menu_text = "#f8f8f8" 19 | menu_text_active = "#fff" 20 | menu_title = "#fff" 21 | 22 | # Backgrounds 23 | background = "#f8f8f8" 24 | home_section_odd = "#f8f8f8" 25 | home_section_even = "#f8f8f8" 26 | -------------------------------------------------------------------------------- /site/index.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | site: blogdown:::blogdown_site 3 | --- 4 | -------------------------------------------------------------------------------- /site/resources/_gen/assets/scss/scss/main.scss_6c95cc1249b26b124274204dbf970c34.json: -------------------------------------------------------------------------------- 1 | {"Target":"css/academic.css","MediaType":"text/css","Data":{}} -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/Untitled/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/Untitled/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/admin/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/admin/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/admin/avatar_hu700675a3593f2196f90a24bec185a055_242650_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/admin/avatar_hu700675a3593f2196f90a24bec185a055_242650_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/admin2/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/admin2/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/alison/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/alison/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/alison/avatar_hu700675a3593f2196f90a24bec185a055_242650_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/alison/avatar_hu700675a3593f2196f90a24bec185a055_242650_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/daniel/avatar_hu1fae6c131542a15bce12f92e02a28104_190948_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/daniel/avatar_hu1fae6c131542a15bce12f92e02a28104_190948_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/daniel/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/daniel/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/desiree/avatar_hu50c085a93b210389fa04ea993ea58292_368966_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/desiree/avatar_hu50c085a93b210389fa04ea993ea58292_368966_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/desiree/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/desiree/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/gwynn/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/gwynn/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/gwynn/avatar_hue9a1cc48f6c2de615f20fe6b3fe60819_6809_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/gwynn/avatar_hue9a1cc48f6c2de615f20fe6b3fe60819_6809_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/hasse/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/hasse/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/hasse/avatar_hu67b15e18ac712dd30eb97ae26f63396a_955452_270x270_fill_q90_lanczos_center.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/hasse/avatar_hu67b15e18ac712dd30eb97ae26f63396a_955452_270x270_fill_q90_lanczos_center.JPG -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/josiah/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/josiah/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/authors/josiah/avatar_hu967430328551f2448a57920e31d4acdf_2667233_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/authors/josiah/avatar_hu967430328551f2448a57920e31d4acdf_2667233_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/home/gallery/gallery/theme-1950s_huaf5482f8cea0c5a703a328640e3b7509_21614_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/home/gallery/gallery/theme-1950s_huaf5482f8cea0c5a703a328640e3b7509_21614_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/home/gallery/gallery/theme-apogee_hu4b45d99db97150df01464c393bfd17d4_24119_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/home/gallery/gallery/theme-apogee_hu4b45d99db97150df01464c393bfd17d4_24119_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/home/gallery/gallery/theme-coffee-playfair_hu446a8f670cc5622adcc77b97ba95f6c5_22462_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/home/gallery/gallery/theme-coffee-playfair_hu446a8f670cc5622adcc77b97ba95f6c5_22462_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/home/gallery/gallery/theme-dark_hu1e8601ecc47f58eada7743fdcd709d3d_21456_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/home/gallery/gallery/theme-dark_hu1e8601ecc47f58eada7743fdcd709d3d_21456_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/home/gallery/gallery/theme-default_huba6228b7bdf30e2f03f12ea91b2cba0d_21751_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/home/gallery/gallery/theme-default_huba6228b7bdf30e2f03f12ea91b2cba0d_21751_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/home/gallery/gallery/theme-forest_hu4f093a1c683134431456584193ea41ee_21797_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/home/gallery/gallery/theme-forest_hu4f093a1c683134431456584193ea41ee_21797_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/home/gallery/gallery/theme-ocean_hu14831ccafc2219f30a7a096fa7617e01_21760_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/home/gallery/gallery/theme-ocean_hu14831ccafc2219f30a7a096fa7617e01_21760_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/home/gallery/gallery/theme-strawberry_hu36b0b347fcca08bd39e2df22dcedbdfb_39532_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/home/gallery/gallery/theme-strawberry_hu36b0b347fcca08bd39e2df22dcedbdfb_39532_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_192x192_fill_lanczos_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_192x192_fill_lanczos_center_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_32x32_fill_lanczos_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_32x32_fill_lanczos_center_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/logo_hu2d91dc1fa1fe958232e3bf03236d431c_41848_0x70_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/logo_hu2d91dc1fa1fe958232e3bf03236d431c_41848_0x70_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/post/getting-started/featured_hub9ee31969f44a6711206a2baf9f065b4_241861_1200x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/post/getting-started/featured_hub9ee31969f44a6711206a2baf9f065b4_241861_1200x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/post/getting-started/featured_hub9ee31969f44a6711206a2baf9f065b4_241861_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/post/getting-started/featured_hub9ee31969f44a6711206a2baf9f065b4_241861_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/post/jupyter/featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_150x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/post/jupyter/featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_150x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/post/jupyter/featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_720x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/post/jupyter/featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_720x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/resources/_gen/images/post/writing-technical-content/featured_huc72159e0fc0d14b85f60d34436a630f0_266353_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/post/writing-technical-content/featured_huc72159e0fc0d14b85f60d34436a630f0_266353_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/post/writing-technical-content/featured_huc72159e0fc0d14b85f60d34436a630f0_266353_2560x2560_fit_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/post/writing-technical-content/featured_huc72159e0fc0d14b85f60d34436a630f0_266353_2560x2560_fit_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/project/external-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_550x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/project/external-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_550x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/project/external-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/project/external-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/project/internal-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_550x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/project/internal-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_550x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/project/internal-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/project/internal-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_918x517_fill_q90_lanczos_smart1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_918x517_fill_q90_lanczos_smart1.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/publication/journal-article/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/publication/journal-article/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/publication/journal-article/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/publication/journal-article/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/publication/preprint/featured_hu559a5add5185b02575aa8333502ab2cc_220813_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/publication/preprint/featured_hu559a5add5185b02575aa8333502ab2cc_220813_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/publication/preprint/featured_hu559a5add5185b02575aa8333502ab2cc_220813_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/publication/preprint/featured_hu559a5add5185b02575aa8333502ab2cc_220813_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/talk/example/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/talk/example/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/resources/_gen/images/talk/example/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/resources/_gen/images/talk/example/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/static/img/2020-Conf-600x600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/img/2020-Conf-600x600.jpg -------------------------------------------------------------------------------- /site/static/img/RStudio-Logo-Flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/img/RStudio-Logo-Flat.png -------------------------------------------------------------------------------- /site/static/img/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/img/icon-192.png -------------------------------------------------------------------------------- /site/static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/img/icon.png -------------------------------------------------------------------------------- /site/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/img/logo.png -------------------------------------------------------------------------------- /site/static/img/robert-bye-678640-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/img/robert-bye-678640-unsplash.jpg -------------------------------------------------------------------------------- /site/static/post/2015-07-23-r-rmarkdown_files/figure-html/pie-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/post/2015-07-23-r-rmarkdown_files/figure-html/pie-1.png -------------------------------------------------------------------------------- /site/static/rmarkdown-libs/datatables-css/datatables-crosstalk.css: -------------------------------------------------------------------------------- 1 | .dt-crosstalk-fade { 2 | opacity: 0.2; 3 | } 4 | 5 | html body div.DTS div.dataTables_scrollBody { 6 | background: none; 7 | } 8 | -------------------------------------------------------------------------------- /site/static/rmarkdown-libs/dt-core/css/jquery.dataTables.extra.css: -------------------------------------------------------------------------------- 1 | /* Selected rows/cells */ 2 | table.dataTable tr.selected td, table.dataTable td.selected { 3 | background-color: #b0bed9 !important; 4 | } 5 | /* In case of scrollX/Y or FixedHeader */ 6 | .dataTables_scrollBody .dataTables_sizing { 7 | visibility: hidden; 8 | } 9 | -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/fit-knn-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/fit-knn-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/ggroc-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/ggroc-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/knn-home1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/knn-home1-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/knn-home2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/knn-home2-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/knn-home2-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/knn-home2-10-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/knn-home2-25-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/knn-home2-25-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/knn-home2-50-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/knn-home2-50-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/rt-test-resid-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/rt-test-resid-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/underfit-knn-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/underfit-knn-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-26-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-27-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-27-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-29-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-29-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-30-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-30-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-32-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-33-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-33-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-34-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-34-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-35-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-35-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-38-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-38-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-41-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-41-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-42-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-42-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-43-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-43-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-44-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-44-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-45-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-45-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-46-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-46-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-54-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-54-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-70-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-70-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-90-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-90-1.png -------------------------------------------------------------------------------- /site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-91-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/02-Classifying_files/figure-html/unnamed-chunk-91-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/pop-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/pop-plot-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-19-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-20-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-20-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-22-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-22-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-23-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-24-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-25-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-25-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-26-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-27-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-27-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-28-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-28-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-29-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-29-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-30-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-30-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-31-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-31-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-32-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-33-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-33-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-34-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-34-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-35-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-35-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-36-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-36-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-37-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-37-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-37-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-37-2.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-38-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-38-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-38-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-38-2.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-39-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-39-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-40-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-41-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-41-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-42-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-42-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-43-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-43-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-44-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-44-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-45-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-45-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-46-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-46-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-47-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-47-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-48-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-48-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-49-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-49-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-50-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-50-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-51-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-51-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /site/static/slides/03-Resampling/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/03-Resampling/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-25-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-25-1.png -------------------------------------------------------------------------------- /site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-25-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-25-2.png -------------------------------------------------------------------------------- /site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-25-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-25-3.png -------------------------------------------------------------------------------- /site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-42-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-42-1.png -------------------------------------------------------------------------------- /site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/04-Ensembling_files/figure-html/unnamed-chunk-58-1.png -------------------------------------------------------------------------------- /site/static/slides/assets/header.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/all-split-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/all-split-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/lm-predict-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/lm-predict-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/lm-resid-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/lm-resid-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/lm-test-resid-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/lm-test-resid-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-26-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-27-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-27-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-29-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-29-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-30-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-30-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-31-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-31-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-33-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-33-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-34-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-34-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-35-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-35-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-35-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-35-2.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-37-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-37-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-38-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-38-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-46-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-46-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-48-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-48-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-49-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-49-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-50-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-50-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-51-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-51-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-52-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-52-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-53-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-53-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-54-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-54-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-55-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-55-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-56-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-56-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/01-Predicting/unnamed-chunk-57-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/01-Predicting/unnamed-chunk-57-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/02-Recipes/uni-biscatter-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/02-Recipes/uni-biscatter-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/02-Recipes/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/02-Recipes/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/02-Recipes/unnamed-chunk-49-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/02-Recipes/unnamed-chunk-49-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/02-Recipes/unnamed-chunk-51-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/02-Recipes/unnamed-chunk-51-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/02-Recipes/unnamed-chunk-52-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/02-Recipes/unnamed-chunk-52-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/02-Recipes/unnamed-chunk-53-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/02-Recipes/unnamed-chunk-53-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/02-Recipes/unnamed-chunk-56-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/02-Recipes/unnamed-chunk-56-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/bootstrap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/bootstrap-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/loocv-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/loocv-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/mccv-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/mccv-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-19-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-20-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-20-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-22-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-22-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-23-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-24-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-25-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-25-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-26-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-27-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-27-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-34-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-34-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/unnamed-chunk-50-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/unnamed-chunk-50-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/03-cv/vfold-tiles-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/03-cv/vfold-tiles-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/04-Tune/knn-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/04-Tune/knn-plot-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/04-Tune/unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/04-Tune/unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /site/static/slides/figs/04-Tune/unnamed-chunk-40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/figs/04-Tune/unnamed-chunk-40-1.png -------------------------------------------------------------------------------- /site/static/slides/images/2020-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/2020-logo.png -------------------------------------------------------------------------------- /site/static/slides/images/538-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/538-1.png -------------------------------------------------------------------------------- /site/static/slides/images/538-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/538-2.png -------------------------------------------------------------------------------- /site/static/slides/images/adi-goldstein-mDinBvq1Sfg-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/adi-goldstein-mDinBvq1Sfg-unsplash.jpg -------------------------------------------------------------------------------- /site/static/slides/images/anim_split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/anim_split.gif -------------------------------------------------------------------------------- /site/static/slides/images/animal-groups.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/animal-groups.jpg -------------------------------------------------------------------------------- /site/static/slides/images/animals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/animals.jpg -------------------------------------------------------------------------------- /site/static/slides/images/annotated-tree/annotated-tree.001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/annotated-tree/annotated-tree.001.png -------------------------------------------------------------------------------- /site/static/slides/images/annotated-tree/annotated-tree.002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/annotated-tree/annotated-tree.002.png -------------------------------------------------------------------------------- /site/static/slides/images/annotated-tree/annotated-tree.003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/annotated-tree/annotated-tree.003.png -------------------------------------------------------------------------------- /site/static/slides/images/annotated-tree/annotated-tree.004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/annotated-tree/annotated-tree.004.png -------------------------------------------------------------------------------- /site/static/slides/images/annotated-tree/annotated-tree.005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/annotated-tree/annotated-tree.005.png -------------------------------------------------------------------------------- /site/static/slides/images/artificial-intelligence-4417279_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/artificial-intelligence-4417279_1920.jpg -------------------------------------------------------------------------------- /site/static/slides/images/aus-challenge-animals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/aus-challenge-animals.png -------------------------------------------------------------------------------- /site/static/slides/images/aus-challenge-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/aus-challenge-tree.png -------------------------------------------------------------------------------- /site/static/slides/images/aus-standard-animals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/aus-standard-animals.png -------------------------------------------------------------------------------- /site/static/slides/images/aus-standard-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/aus-standard-tree.png -------------------------------------------------------------------------------- /site/static/slides/images/bonsai-anatomy-flip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/bonsai-anatomy-flip.jpg -------------------------------------------------------------------------------- /site/static/slides/images/bonsai-anatomy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/bonsai-anatomy.jpg -------------------------------------------------------------------------------- /site/static/slides/images/conf-matrix/conf-matrix.001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/conf-matrix/conf-matrix.001.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/conf-matrix/conf-matrix.002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/conf-matrix/conf-matrix.002.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/conf-matrix/conf-matrix.003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/conf-matrix/conf-matrix.003.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/conf-matrix/conf-matrix.004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/conf-matrix/conf-matrix.004.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/conf-matrix/conf-matrix.005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/conf-matrix/conf-matrix.005.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/conf-matrix/conf-matrix.006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/conf-matrix/conf-matrix.006.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/conf-matrix/conf-matrix.007.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/conf-matrix/conf-matrix.007.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/conf-matrix/conf-matrix.008.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/conf-matrix/conf-matrix.008.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/conf-matrix/conf-matrix.009.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/conf-matrix/conf-matrix.009.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/conf-matrix/sens-spec.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/conf-matrix/sens-spec.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/conf-matrix/sens.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/conf-matrix/sens.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/conf-matrix/spec.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/conf-matrix/spec.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/copyingandpasting-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/copyingandpasting-big.png -------------------------------------------------------------------------------- /site/static/slides/images/cv-match.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/cv-match.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/cv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/cv.gif -------------------------------------------------------------------------------- /site/static/slides/images/daan-mooij-91LGCVN5SAI-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/daan-mooij-91LGCVN5SAI-unsplash.jpg -------------------------------------------------------------------------------- /site/static/slides/images/ensemble/ensemble.001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ensemble/ensemble.001.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ensemble/ensemble.002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ensemble/ensemble.002.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ensemble/ensemble.003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ensemble/ensemble.003.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ensemble/ensemble.004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ensemble/ensemble.004.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ensemble/ensemble.005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ensemble/ensemble.005.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ensemble/ensemble.006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ensemble/ensemble.006.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ensemble/ensemble.007.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ensemble/ensemble.007.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ensemble/ensemble.008.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ensemble/ensemble.008.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ensemble/ensemble.009.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ensemble/ensemble.009.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/hello-red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/hello-red.jpg -------------------------------------------------------------------------------- /site/static/slides/images/hello.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/hello.jpg -------------------------------------------------------------------------------- /site/static/slides/images/horse_black_mane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/horse_black_mane.png -------------------------------------------------------------------------------- /site/static/slides/images/intro/intro.001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/intro/intro.001.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/intro/intro.002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/intro/intro.002.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/intro/intro.003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/intro/intro.003.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/intro/intro.004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/intro/intro.004.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/kari-shea-AVqh83jStMA-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/kari-shea-AVqh83jStMA-unsplash.jpg -------------------------------------------------------------------------------- /site/static/slides/images/listcols.001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/listcols.001.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/listcols.002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/listcols.002.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/listcols.003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/listcols.003.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/listcols.004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/listcols.004.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/marriage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/marriage.jpg -------------------------------------------------------------------------------- /site/static/slides/images/ml-01/ml-01.001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ml-01/ml-01.001.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ml-01/ml-01.002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ml-01/ml-01.002.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ml-01/ml-01.003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ml-01/ml-01.003.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ml-01/ml-01.004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ml-01/ml-01.004.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ml-01/ml-01.005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ml-01/ml-01.005.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/ml-01/ml-01.006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/ml-01/ml-01.006.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/modeling.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/modeling.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/orchestra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/orchestra.jpg -------------------------------------------------------------------------------- /site/static/slides/images/overfit-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/overfit-tree.png -------------------------------------------------------------------------------- /site/static/slides/images/parker-johnson-v0OWc_skg0g-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/parker-johnson-v0OWc_skg0g-unsplash.jpg -------------------------------------------------------------------------------- /site/static/slides/images/pca/pca.001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/pca/pca.001.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/pca/pca.002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/pca/pca.002.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/pca/pca.003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/pca/pca.003.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/pca/pca.004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/pca/pca.004.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/pca/pca.005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/pca/pca.005.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/pink-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/pink-thunder.png -------------------------------------------------------------------------------- /site/static/slides/images/predicting/predicting.001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/predicting/predicting.001.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/predicting/predicting.002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/predicting/predicting.002.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/predicting/predicting.003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/predicting/predicting.003.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/predicting/predicting.004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/predicting/predicting.004.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/predicting/predicting.005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/predicting/predicting.005.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/predicting/predicting.006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/predicting/predicting.006.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/predicting/predicting.007.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/predicting/predicting.007.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/predicting/predicting.008.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/predicting/predicting.008.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/predicting/predicting.009.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/predicting/predicting.009.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/predicting/predicting.010.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/predicting/predicting.010.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/recipe-hex/recipe-hex.001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/recipe-hex/recipe-hex.001.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/recipe-hex/recipe-hex.002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/recipe-hex/recipe-hex.002.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/recipe-hex/recipe-hex.003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/recipe-hex/recipe-hex.003.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/recipe-hex/recipe-hex.004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/recipe-hex/recipe-hex.004.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/recipe-hex/recipe-hex.005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/recipe-hex/recipe-hex.005.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/recipe-hex/recipe-hex.006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/recipe-hex/recipe-hex.006.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/recipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/recipes.png -------------------------------------------------------------------------------- /site/static/slides/images/robert-bye-678640-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/robert-bye-678640-unsplash.jpg -------------------------------------------------------------------------------- /site/static/slides/images/roc-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/roc-bad.png -------------------------------------------------------------------------------- /site/static/slides/images/roc-guessing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/roc-guessing.png -------------------------------------------------------------------------------- /site/static/slides/images/roc-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/roc-ok.png -------------------------------------------------------------------------------- /site/static/slides/images/roc-perfect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/roc-perfect.png -------------------------------------------------------------------------------- /site/static/slides/images/roc-pretty-good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/roc-pretty-good.png -------------------------------------------------------------------------------- /site/static/slides/images/roofs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/roofs.jpg -------------------------------------------------------------------------------- /site/static/slides/images/rsp-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/rsp-step1.png -------------------------------------------------------------------------------- /site/static/slides/images/sad_unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/sad_unicorn.png -------------------------------------------------------------------------------- /site/static/slides/images/shed.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/shed.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/sing-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/sing-tree.png -------------------------------------------------------------------------------- /site/static/slides/images/so-dev-survey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/so-dev-survey.png -------------------------------------------------------------------------------- /site/static/slides/images/tidymodels-hex/tidymodels-hex.001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/tidymodels-hex/tidymodels-hex.001.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/tidymodels-hex/tidymodels-hex.002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/tidymodels-hex/tidymodels-hex.002.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/tidymodels-hex/tidymodels-hex.003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/tidymodels-hex/tidymodels-hex.003.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/tidymodels-hex/tidymodels-hex.004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/tidymodels-hex/tidymodels-hex.004.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/tidymodels-hex/tidymodels-hex.005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/tidymodels-hex/tidymodels-hex.005.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/tidymodels-hex/tidymodels-hex.006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/tidymodels-hex/tidymodels-hex.006.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/unicorn_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorn_horn.png -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/beer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/beer.jpg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/book.jpg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/boot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/boot.jpg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/bottle.jpg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/cards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/cards.jpg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/joshua-hoehne-wnHeb_pRJBo-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/joshua-hoehne-wnHeb_pRJBo-unsplash.jpg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/lunch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/lunch.jpg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/pjs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/pjs.jpg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/puzzle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/puzzle.jpg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/quilt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/quilt.jpg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/sheets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/sheets.jpg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/snowglobe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/snowglobe.jpg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/unicorns.001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/unicorns.001.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/unicorns.002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/unicorns.002.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/unicorns.003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/unicorns.003.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/unicorns.004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/unicorns.004.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/unicorns.005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/unicorns.005.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/unicorns-rainbows/unicorns.006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/unicorns-rainbows/unicorns.006.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/vartypes_answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/vartypes_answers.png -------------------------------------------------------------------------------- /site/static/slides/images/vartypes_quiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/vartypes_quiz.png -------------------------------------------------------------------------------- /site/static/slides/images/vartypes_unicorn.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/vartypes_unicorn.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/vfoldcv/vfoldcv.001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/vfoldcv/vfoldcv.001.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/vfoldcv/vfoldcv.002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/vfoldcv/vfoldcv.002.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/vfoldcv/vfoldcv.003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/vfoldcv/vfoldcv.003.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/vfoldcv/vfoldcv.004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/vfoldcv/vfoldcv.004.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/vfoldcv/vfoldcv.005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/vfoldcv/vfoldcv.005.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.001.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.002.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.003.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.004.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.005.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.006.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.007.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.007.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.008.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.008.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.009.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.009.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.010.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.010.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.011.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.011.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.012.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.012.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/workflows/workflows.013.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/workflows/workflows.013.jpeg -------------------------------------------------------------------------------- /site/static/slides/images/zestimate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/zestimate.png -------------------------------------------------------------------------------- /site/static/slides/images/zillow.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/images/zillow.jpeg -------------------------------------------------------------------------------- /site/static/slides/libs/countdown/smb_stage_clear.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/static/slides/libs/countdown/smb_stage_clear.mp3 -------------------------------------------------------------------------------- /site/themes/hugo-academic/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | [*.toml] 14 | max_line_length = 100 15 | 16 | [*.md] 17 | trim_trailing_whitespace = false 18 | 19 | [layouts/shortcodes/*.html] 20 | insert_final_newline = false 21 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/.gitignore: -------------------------------------------------------------------------------- 1 | # IDE specific 2 | .idea/ 3 | .vscode/ 4 | 5 | # Hugo 6 | exampleSite/public/ 7 | 8 | # Jupyter 9 | .ipynb_checkpoints/ 10 | 11 | # Node 12 | node_modules/ 13 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/academic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/academic.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/archetypes/authors/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/archetypes/authors/avatar.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/css/reveal_custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/assets/css/reveal_custom.css -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/assets/images/icon.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/js/mathjax-config.js: -------------------------------------------------------------------------------- 1 | // MathJax Configuration 2 | // 3 | // v2 to v3 upgrade notes: 4 | // - The CommonHTML.linebreaks option is not yet implemented (but may be in a future release) 5 | // - The TeX.noUndefined.attributes option is not yet implemented (but may be in a future release) 6 | window.MathJax = { 7 | tex: { 8 | inlineMath: [['$', '$'], ['\\(', '\\)']], 9 | displayMath: [['$$', '$$'], ['\\[', '\\]']], 10 | processEscapes: false, 11 | packages: {'[+]': ['noerrors']} 12 | }, 13 | loader: { 14 | load: ['[tex]/noerrors'] 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/academic/_integrations.scss: -------------------------------------------------------------------------------- 1 | /* Mermaid.js div */ 2 | div.mermaid { 3 | width: 100%; 4 | text-align: center; 5 | margin-bottom: 1rem; 6 | } 7 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/academic/academic.scss: -------------------------------------------------------------------------------- 1 | /************************************************* 2 | * Academic: The Website Builder for Hugo 3 | * Designed by @GeorgeCushen 4 | * https://sourcethemes.com/academic/ 5 | * License: https://github.com/gcushen/hugo-academic/blob/master/LICENSE.md 6 | **************************************************/ 7 | 8 | @import "root"; 9 | @import "nav"; 10 | @import "card"; 11 | @import "search"; 12 | @import "content"; 13 | @import "listings"; 14 | @import "widgets"; 15 | @import "docs"; 16 | @import "dark"; 17 | @import "integrations"; 18 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/custom.scss: -------------------------------------------------------------------------------- 1 | // Override this file to add your own SCSS styling. 2 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- 1 | .jumbotron { 2 | padding: $jumbotron-padding ($jumbotron-padding / 2); 3 | margin-bottom: $jumbotron-padding; 4 | color: $jumbotron-color; 5 | background-color: $jumbotron-bg; 6 | @include border-radius($border-radius-lg); 7 | 8 | @include media-breakpoint-up(sm) { 9 | padding: ($jumbotron-padding * 2) $jumbotron-padding; 10 | } 11 | } 12 | 13 | .jumbotron-fluid { 14 | padding-right: 0; 15 | padding-left: 0; 16 | @include border-radius(0); 17 | } 18 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | @include transition($transition-fade); 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | .collapse { 10 | &:not(.show) { 11 | display: none; 12 | } 13 | } 14 | 15 | .collapsing { 16 | position: relative; 17 | height: 0; 18 | overflow: hidden; 19 | @include transition($transition-collapse); 20 | } 21 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v4.3.1 (https://getbootstrap.com/) 3 | * Copyright 2011-2019 The Bootstrap Authors 4 | * Copyright 2011-2019 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | 9 | @import "functions"; 10 | @import "variables"; 11 | @import "mixins"; 12 | @import "reboot"; 13 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: $color; 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: darken($color, 10%); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_badge.scss: -------------------------------------------------------------------------------- 1 | @mixin badge-variant($bg) { 2 | color: color-yiq($bg); 3 | background-color: $bg; 4 | 5 | @at-root a#{&} { 6 | @include hover-focus { 7 | color: color-yiq($bg); 8 | background-color: darken($bg, 10%); 9 | } 10 | 11 | &:focus, 12 | &.focus { 13 | outline: 0; 14 | box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @mixin float-left { 4 | float: left !important; 5 | @include deprecate("The `float-left` mixin", "v4.3.0", "v5"); 6 | } 7 | @mixin float-right { 8 | float: right !important; 9 | @include deprecate("The `float-right` mixin", "v4.3.0", "v5"); 10 | } 11 | @mixin float-none { 12 | float: none !important; 13 | @include deprecate("The `float-none` mixin", "v4.3.0", "v5"); 14 | } 15 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | @mixin list-group-item-variant($state, $background, $color) { 4 | .list-group-item-#{$state} { 5 | color: $color; 6 | background-color: $background; 7 | 8 | &.list-group-item-action { 9 | @include hover-focus { 10 | color: $color; 11 | background-color: darken($background, 5%); 12 | } 13 | 14 | &.active { 15 | color: $white; 16 | background-color: $color; 17 | border-color: $color; 18 | } 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y) { 6 | height: 0; 7 | margin: $margin-y 0; 8 | overflow: hidden; 9 | border-top: 1px solid $color; 10 | } 11 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | @include deprecate("`size()`", "v4.3.0", "v5"); 7 | } 8 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Typography 4 | 5 | @mixin text-emphasis-variant($parent, $color) { 6 | #{$parent} { 7 | color: $color !important; 8 | } 9 | @if $emphasized-link-hover-darken-percentage != 0 { 10 | a#{$parent} { 11 | @include hover-focus { 12 | color: darken($color, $emphasized-link-hover-darken-percentage) !important; 13 | } 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_text-hide.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | @mixin text-hide($ignore-warning: false) { 3 | // stylelint-disable-next-line font-family-no-missing-generic-family-keyword 4 | font: 0/0 a; 5 | color: transparent; 6 | text-shadow: none; 7 | background-color: transparent; 8 | border: 0; 9 | 10 | @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning); 11 | } 12 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable property-blacklist 2 | @mixin transition($transition...) { 3 | @if $enable-transitions { 4 | @if length($transition) == 0 { 5 | transition: $transition-base; 6 | } @else { 7 | transition: $transition; 8 | } 9 | } 10 | 11 | @if $enable-prefers-reduced-motion-media-query { 12 | @media (prefers-reduced-motion: reduce) { 13 | transition: none; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Visibility 4 | 5 | @mixin invisible($visibility) { 6 | visibility: $visibility !important; 7 | @include deprecate("`invisible()`", "v4.3.0", "v5"); 8 | } 9 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_align.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .align-baseline { vertical-align: baseline !important; } // Browser default 4 | .align-top { vertical-align: top !important; } 5 | .align-middle { vertical-align: middle !important; } 6 | .align-bottom { vertical-align: bottom !important; } 7 | .align-text-bottom { vertical-align: text-bottom !important; } 8 | .align-text-top { vertical-align: text-top !important; } 9 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_background.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $color, $value in $theme-colors { 4 | @include bg-variant(".bg-#{$color}", $value); 5 | } 6 | 7 | @if $enable-gradients { 8 | @each $color, $value in $theme-colors { 9 | @include bg-gradient-variant(".bg-gradient-#{$color}", $value); 10 | } 11 | } 12 | 13 | .bg-white { 14 | background-color: $white !important; 15 | } 16 | 17 | .bg-transparent { 18 | background-color: transparent !important; 19 | } 20 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $breakpoint in map-keys($grid-breakpoints) { 4 | @include media-breakpoint-up($breakpoint) { 5 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 6 | 7 | .float#{$infix}-left { float: left !important; } 8 | .float#{$infix}-right { float: right !important; } 9 | .float#{$infix}-none { float: none !important; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_overflow.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $value in $overflows { 4 | .overflow-#{$value} { overflow: $value !important; } 5 | } 6 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Screenreaders 3 | // 4 | 5 | .sr-only { 6 | @include sr-only(); 7 | } 8 | 9 | .sr-only-focusable { 10 | @include sr-only-focusable(); 11 | } 12 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_shadows.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .shadow-sm { box-shadow: $box-shadow-sm !important; } 4 | .shadow { box-shadow: $box-shadow !important; } 5 | .shadow-lg { box-shadow: $box-shadow-lg !important; } 6 | .shadow-none { box-shadow: none !important; } 7 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_stretched-link.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Stretched link 3 | // 4 | 5 | .stretched-link { 6 | &::after { 7 | position: absolute; 8 | top: 0; 9 | right: 0; 10 | bottom: 0; 11 | left: 0; 12 | z-index: 1; 13 | // Just in case `pointer-events: none` is set on a parent 14 | pointer-events: auto; 15 | content: ""; 16 | // IE10 bugfix, see https://stackoverflow.com/questions/16947967/ie10-hover-pseudo-class-doesnt-work-without-background-color 17 | background-color: rgba(0, 0, 0, 0); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // 4 | // Visibility utilities 5 | // 6 | 7 | .visible { 8 | visibility: visible !important; 9 | } 10 | 11 | .invisible { 12 | visibility: hidden !important; 13 | } 14 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/academic.toml: -------------------------------------------------------------------------------- 1 | # Academic 2 | 3 | version = "4.7.0" 4 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/fonts/classic.toml: -------------------------------------------------------------------------------- 1 | # Font style metadata 2 | name = "Classic" 3 | 4 | # Optional Google font URL 5 | google_fonts = "Lato:400,700|Merriweather|Roboto+Mono" 6 | 7 | # Font families 8 | heading_font = "Lato" 9 | body_font = "Merriweather" 10 | nav_font = "Lato" 11 | mono_font = "Roboto Mono" 12 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/fonts/minimal.toml: -------------------------------------------------------------------------------- 1 | # Font style metadata 2 | name = "Minimal" 3 | 4 | # Optional Google font URL 5 | google_fonts = "Montserrat:400,700|Roboto:400,400italic,700|Roboto+Mono" 6 | 7 | # Font families 8 | heading_font = "Montserrat" 9 | body_font = "Roboto" 10 | nav_font = "Roboto" 11 | mono_font = "Roboto Mono" 12 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/fonts/mr_robot.toml: -------------------------------------------------------------------------------- 1 | # Font style metadata 2 | name = "Mr Robot" 3 | 4 | # Optional Google font URL 5 | google_fonts = "B612+Mono:400,700|Orbitron:400,700" 6 | 7 | # Font families 8 | heading_font = "Orbitron" 9 | body_font = "B612 Mono" 10 | nav_font = "B612 Mono" 11 | mono_font = "B612 Mono" 12 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/fonts/rose.toml: -------------------------------------------------------------------------------- 1 | # Font style metadata 2 | name = "Rose" 3 | 4 | # Optional Google font URL 5 | google_fonts = "Cutive+Mono|Lora:400,700|Roboto:400,700" 6 | 7 | # Font families 8 | heading_font = "Lora" 9 | body_font = "Roboto" 10 | nav_font = "Lora" 11 | mono_font = "Cutive Mono" 12 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/i18n/languages.yaml: -------------------------------------------------------------------------------- 1 | "ca": "Català" 2 | "da": "Dansk" 3 | "de": "Deutsch" 4 | "el": "Ελληνικά" 5 | "en": "English" 6 | "es": "Español" 7 | "et": "Eesti" 8 | "eu": "Euskara" 9 | "fr": "Français" 10 | "hu": "Magyar" 11 | "id": "Bahasa Indonesia" 12 | "it": "Italiano" 13 | "ja": "日本語" 14 | "km": "ភាសាខ្មែរ" 15 | "ko": "한국어" 16 | "nl": "Nederlands" 17 | "pl": "Polski" 18 | "pt": "Português" 19 | "ro": "Română" 20 | "ru": "Русский" 21 | "sv": "Svenska" 22 | "tr": "Türkçe" 23 | "uk": "Українська" 24 | "vi": "Tiếng Việt" 25 | "zh": "中文 (简体)" 26 | "zh-Hant": "中文 (繁體)" 27 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/publication_types.toml: -------------------------------------------------------------------------------- 1 | # Publication types. 2 | # Each item in the list corresponds to an item in the language packs. 3 | types = [ "pub_uncat", 4 | "pub_conf", 5 | "pub_journal", 6 | "pub_preprint", 7 | "pub_report", 8 | "pub_book", 9 | "pub_book_section", 10 | "pub_thesis", 11 | "pub_patent" 12 | ] 13 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/themes/1950s.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "1950s" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "#EF525B" 9 | 10 | # Menu 11 | menu_primary = "#24C2CB" 12 | menu_text = "#fff" 13 | menu_text_active = "#00828B" 14 | menu_title = "#fff" 15 | 16 | # Backgrounds 17 | background = "#EAE7D6" 18 | home_section_odd = "#EAE7D6" 19 | home_section_even = "#EAE7D6" 20 | 21 | font = "rose" 22 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/themes/apogee.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Apogee" 3 | 4 | # Is theme light or dark? 5 | light = false 6 | 7 | # Primary 8 | primary = "#EAF04E" 9 | 10 | # Menu 11 | menu_primary = "#312450" 12 | menu_text = "#F2BE4E" 13 | menu_text_active = "#FFE1A0" 14 | menu_title = "#E0A526" 15 | 16 | # Home sections 17 | home_section_odd = "#5e42a6" 18 | home_section_even = "#5e42a6" 19 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/themes/coffee.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Coffee" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "#795548" 9 | 10 | # Menu 11 | menu_primary = "#795548" 12 | menu_text = "rgba(255,255,255,0.6)" 13 | menu_text_active = "rgba(255,255,255,1)" 14 | menu_title = "#fff" 15 | 16 | # Backgrounds 17 | background = "hsla(16, 24%, 85%, 1)" 18 | home_section_odd = "hsla(16, 24%, 85%, 1)" 19 | home_section_even = "hsla(16, 24%, 80%, 1)" 20 | 21 | font = "rose" 22 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/themes/dark.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Dark" 3 | 4 | # Is theme light or dark? 5 | light = false 6 | 7 | # Primary 8 | primary = "hsl(339, 90%, 68%)" 9 | 10 | # Menu 11 | menu_primary = "rgb(20, 22, 34)" 12 | menu_text = "rgba(255,255,255,0.6)" 13 | menu_text_active = "rgba(255,255,255,1)" 14 | menu_title = "#fff" 15 | 16 | # Home sections 17 | home_section_odd = "hsla(231, 15%, 18%, 1)" 18 | home_section_even = "hsla(231, 15%, 16%, 1)" 19 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/themes/forest.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Forest" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "#4caf50" 9 | 10 | # Menu 11 | menu_primary = "#4caf50" 12 | menu_text = "#fff" 13 | menu_text_active = "#1b5e20" 14 | menu_title = "#fff" 15 | 16 | # Home sections 17 | home_section_odd = "rgb(255, 255, 255)" 18 | home_section_even = "rgb(247, 247, 247)" 19 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/themes/minimal.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Minimal" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "#2962ff" 9 | 10 | # Menu 11 | menu_primary = "#fff" 12 | menu_text = "#34495e" 13 | menu_text_active = "#2962ff" 14 | menu_title = "#2b2b2b" 15 | 16 | # Home sections 17 | home_section_odd = "rgb(255, 255, 255)" 18 | home_section_even = "rgb(247, 247, 247)" 19 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/themes/mr_robot.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Mr Robot" 3 | 4 | # Is theme light or dark? 5 | light = false 6 | 7 | # Primary 8 | primary = "rgb(0, 136, 204)" 9 | 10 | # Menu 11 | menu_primary = "rgb(33, 37, 41)" 12 | menu_text = "rgb(0, 136, 204)" 13 | menu_text_active = "rgba(255,255,255,1)" 14 | menu_title = "rgb(153, 153, 153)" 15 | 16 | # Home sections 17 | home_section_odd = "rgb(29, 33, 39)" 18 | home_section_even = "rgb(29, 33, 39)" 19 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/themes/ocean.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Ocean" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "#3f51b5" 9 | 10 | # Menu 11 | menu_primary = "#3f51b5" # 500 12 | menu_text = "#fff" 13 | menu_text_active = "#8c9eff" # A100 14 | menu_title = "#fff" 15 | 16 | # Home sections 17 | home_section_odd = "rgb(255, 255, 255)" 18 | home_section_even = "rgb(247, 247, 247)" 19 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/themes/rose.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Rose" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "rgb(251, 191, 183)" 9 | 10 | # Menu 11 | menu_primary = "rgb(247, 247, 247)" 12 | menu_text = "#000" 13 | menu_text_active = "rgb(25, 25, 25)" 14 | menu_title = "#000" 15 | 16 | # Home sections 17 | home_section_odd = "#FFF" 18 | home_section_even = "rgb(234, 242, 250)" 19 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/data/themes/strawberry.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Strawberry" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "#ff3860" 9 | 10 | # Menu 11 | menu_primary = "#ff3860" 12 | menu_text = "#fff" 13 | menu_text_active = "rgb(208, 255, 56)" 14 | menu_title = "#fff" 15 | 16 | # Home sections 17 | home_section_odd = "#fff" 18 | home_section_even = "#fff" 19 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/authors/admin/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/authors/admin/avatar.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/courses/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Courses 3 | layout: docs # Do not modify. 4 | 5 | # Optional header image (relative to `static/img/` folder). 6 | header: 7 | caption: "" 8 | image: "" 9 | --- 10 | 11 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/home/about.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # About widget. 3 | widget = "about" # See https://sourcethemes.com/academic/docs/page-builder/ 4 | headless = true # This file represents a page section. 5 | active = true # Activate this widget? true/false 6 | weight = 20 # Order that this section will appear in. 7 | 8 | title = "Biography" 9 | 10 | # Choose the user profile to display 11 | # This should be the username of a profile in your `content/authors/` folder. 12 | # See https://sourcethemes.com/academic/docs/get-started/#introduce-yourself 13 | author = "admin" 14 | +++ 15 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-1950s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-1950s.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-apogee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-apogee.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-coffee-playfair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-coffee-playfair.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-dark.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-default.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-forest.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-ocean.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-strawberry.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/home/gallery/index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # Gallery section using the Blank widget and Gallery element (shortcode). 3 | widget = "blank" # See https://sourcethemes.com/academic/docs/page-builder/ 4 | headless = true # This file represents a page section. 5 | active = true # Activate this widget? true/false 6 | weight = 66 # Order that this section will appear. 7 | 8 | title = "Gallery" 9 | subtitle = "" 10 | +++ 11 | 12 | {{< gallery >}} 13 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/home/index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # Homepage 3 | type = "widget_page" 4 | headless = true # Homepage is headless, other widget pages are not. 5 | +++ 6 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/post/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Posts 3 | 4 | # View. 5 | # 1 = List 6 | # 2 = Compact 7 | # 3 = Card 8 | view: 2 9 | 10 | # Optional header image (relative to `static/img/` folder). 11 | header: 12 | caption: "" 13 | image: "" 14 | --- 15 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/post/getting-started/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/post/getting-started/featured.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/post/jupyter/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/post/jupyter/featured.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/post/jupyter/index_1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/post/jupyter/index_1_0.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/post/writing-technical-content/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/post/writing-technical-content/featured.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/privacy.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Privacy Policy 3 | date: "2018-06-28T00:00:00+01:00" 4 | draft: true 5 | share: false 6 | commentable: false 7 | editable: false 8 | 9 | # Optional header image (relative to `static/img/` folder). 10 | header: 11 | caption: "" 12 | image: "" 13 | --- 14 | 15 | ... 16 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/project/external-project/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/project/external-project/featured.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/project/external-project/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: External Project 3 | summary: An example of linking directly to an external project website using `external_link`. 4 | tags: 5 | - Demo 6 | date: "2016-04-27T00:00:00Z" 7 | 8 | # Optional external URL for project (replaces project detail page). 9 | external_link: http://example.org 10 | 11 | image: 12 | caption: Photo by Toa Heftiba on Unsplash 13 | focal_point: Smart 14 | --- 15 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/project/internal-project/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/project/internal-project/featured.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/publication/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Publications 3 | 4 | # View. 5 | # 1 = List 6 | # 2 = Compact 7 | # 3 = Card 8 | # 4 = Citation 9 | view: 4 10 | 11 | # Optional header image (relative to `static/img/` folder). 12 | header: 13 | caption: "" 14 | image: "" 15 | --- 16 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/publication/conference-paper/cite.bib: -------------------------------------------------------------------------------- 1 | @inproceedings{example1, 2 | title={An example conference paper}, 3 | author={Bighetti, Nelson and Ford, Robert}, 4 | booktitle={Source Themes Conference}, 5 | pages={1--6}, 6 | year={2013}, 7 | organization={IEEE} 8 | } 9 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/publication/conference-paper/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/publication/conference-paper/featured.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/publication/journal-article/cite.bib: -------------------------------------------------------------------------------- 1 | @article{example2, 2 | title = {An example journal article}, 3 | author={Bighetti, Nelson and Ford, Robert}, 4 | journal = {Journal of Source Themes}, 5 | year = 2015, 6 | volume = 1, 7 | number = 1 8 | } 9 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/publication/journal-article/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/publication/journal-article/featured.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/publication/preprint/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/publication/preprint/featured.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/talk/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Recent & Upcoming Talks 3 | 4 | # View. 5 | # 1 = List 6 | # 2 = Compact 7 | # 3 = Card 8 | view: 2 9 | 10 | # Optional header image (relative to `static/img/` folder). 11 | header: 12 | caption: "" 13 | image: "" 14 | --- 15 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/talk/example/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/content/talk/example/featured.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/content/terms.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Terms 3 | date: "2018-06-28T00:00:00+01:00" 4 | draft: true 5 | share: false 6 | commentable: false 7 | editable: false 8 | 9 | # Optional header image (relative to `static/img/` folder). 10 | header: 11 | caption: "" 12 | image: "" 13 | --- 14 | 15 | ... 16 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/assets/scss/scss/main.scss_6c95cc1249b26b124274204dbf970c34.json: -------------------------------------------------------------------------------- 1 | {"Target":"css/academic.css","MediaType":"text/css","Data":{}} -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/authors/admin/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/authors/admin/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/authors/admin2/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/authors/admin2/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-1950s_huaf5482f8cea0c5a703a328640e3b7509_21614_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-1950s_huaf5482f8cea0c5a703a328640e3b7509_21614_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-apogee_hu4b45d99db97150df01464c393bfd17d4_24119_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-apogee_hu4b45d99db97150df01464c393bfd17d4_24119_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-coffee-playfair_hu446a8f670cc5622adcc77b97ba95f6c5_22462_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-coffee-playfair_hu446a8f670cc5622adcc77b97ba95f6c5_22462_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-dark_hu1e8601ecc47f58eada7743fdcd709d3d_21456_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-dark_hu1e8601ecc47f58eada7743fdcd709d3d_21456_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-default_huba6228b7bdf30e2f03f12ea91b2cba0d_21751_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-default_huba6228b7bdf30e2f03f12ea91b2cba0d_21751_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-forest_hu4f093a1c683134431456584193ea41ee_21797_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-forest_hu4f093a1c683134431456584193ea41ee_21797_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-ocean_hu14831ccafc2219f30a7a096fa7617e01_21760_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-ocean_hu14831ccafc2219f30a7a096fa7617e01_21760_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-strawberry_hu36b0b347fcca08bd39e2df22dcedbdfb_39532_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-strawberry_hu36b0b347fcca08bd39e2df22dcedbdfb_39532_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_192x192_fill_lanczos_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_192x192_fill_lanczos_center_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_32x32_fill_lanczos_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_32x32_fill_lanczos_center_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/post/getting-started/featured_hub9ee31969f44a6711206a2baf9f065b4_241861_1200x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/post/getting-started/featured_hub9ee31969f44a6711206a2baf9f065b4_241861_1200x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/post/getting-started/featured_hub9ee31969f44a6711206a2baf9f065b4_241861_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/post/getting-started/featured_hub9ee31969f44a6711206a2baf9f065b4_241861_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/post/jupyter/featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_150x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/post/jupyter/featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_150x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/post/jupyter/featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_720x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/post/jupyter/featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_720x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/post/writing-technical-content/featured_huc72159e0fc0d14b85f60d34436a630f0_266353_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/post/writing-technical-content/featured_huc72159e0fc0d14b85f60d34436a630f0_266353_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/post/writing-technical-content/featured_huc72159e0fc0d14b85f60d34436a630f0_266353_2560x2560_fit_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/post/writing-technical-content/featured_huc72159e0fc0d14b85f60d34436a630f0_266353_2560x2560_fit_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/project/external-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_550x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/project/external-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_550x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/project/external-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/project/external-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/project/internal-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_550x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/project/internal-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_550x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/project/internal-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/project/internal-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_918x517_fill_q90_lanczos_smart1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_918x517_fill_q90_lanczos_smart1.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/journal-article/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/journal-article/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/journal-article/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/journal-article/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/preprint/featured_hu559a5add5185b02575aa8333502ab2cc_220813_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/preprint/featured_hu559a5add5185b02575aa8333502ab2cc_220813_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/preprint/featured_hu559a5add5185b02575aa8333502ab2cc_220813_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/publication/preprint/featured_hu559a5add5185b02575aa8333502ab2cc_220813_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/talk/example/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/talk/example/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/resources/_gen/images/talk/example/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/resources/_gen/images/talk/example/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/static/img/boards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/static/img/boards.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/static/img/headers/bubbles-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/static/img/headers/bubbles-wide.jpg -------------------------------------------------------------------------------- /site/themes/hugo-academic/exampleSite/static/img/hero-academic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/exampleSite/static/img/hero-academic.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/screenshot.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/theme-1950s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/theme-1950s.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/theme-apogee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/theme-apogee.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/theme-coffee-playfair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/theme-coffee-playfair.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/theme-cupcake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/theme-cupcake.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/theme-dark.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/theme-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/theme-default.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/theme-forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/theme-forest.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/theme-ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/theme-ocean.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/theme-spacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/theme-spacer.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/theme-strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/theme-strawberry.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/themes.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/images/tn.png -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- 1 | {{/* A Hugo Markdown render hook to parse links, opening external links in new tabs. */}} 2 | {{ .Text | safeHTML }} 3 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{- define "main" -}} 2 | 3 |
4 | 5 | {{ partial "page_header" . }} 6 | 7 |
8 | 9 |
10 | {{ .Content }} 11 |
12 | 13 | {{ partial "page_footer" . }} 14 | 15 |
16 |
17 | 18 | {{- end -}} 19 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/docs/list.html: -------------------------------------------------------------------------------- 1 | {{- define "main" -}} 2 | {{ partial "docs_layout.html" . }} 3 | {{- end -}} 4 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/docs/single.html: -------------------------------------------------------------------------------- 1 | {{- define "main" -}} 2 | {{ partial "docs_layout.html" . }} 3 | {{- end -}} 4 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/partials/comments.html: -------------------------------------------------------------------------------- 1 | {{ if site.Params.comments.engine | and (index site.Params.comments.commentable .Type) | and (ne .Params.commentable false) | or .Params.commentable }} 2 |
3 | {{ if eq site.Params.comments.engine 1 }} 4 | {{ partial "comments/disqus.html" . }} 5 | {{ else if eq site.Params.comments.engine 2 }} 6 | {{ partial "comments/commento.html" . }} 7 | {{ end }} 8 |
9 | {{ end }} 10 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/partials/comments/commento.html: -------------------------------------------------------------------------------- 1 |
2 | {{ $url := (printf "%s/js/commento.js" (site.Params.comments.commento.url | default "https://cdn.commento.io")) }} 3 | 4 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/partials/custom_head.html: -------------------------------------------------------------------------------- 1 | {{/* Do not directly modify this file! */}} 2 | {{/* Instead, create a `layouts/partials/custom_head.html` file in your site and add your code to it. */}} 3 | 4 | {{/* This partial is included in `themes/academic/layouts/partials/site_head.html`. */}} 5 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/partials/custom_js.html: -------------------------------------------------------------------------------- 1 | {{/* Do not directly modify this file! */}} 2 | {{/* Instead, create a `layouts/partials/custom_js.html` file in your site and add your code to it. */}} 3 | 4 | {{/* This partial is included in `themes/academic/layouts/partials/site_js.html`. */}} 5 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/partials/docs_toc_foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/layouts/partials/docs_toc_foot.html -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/partials/functions/get_icon.html: -------------------------------------------------------------------------------- 1 | {{/* Function to get website icon image. */}} 2 | {{/* Input: size (int) */}} 3 | {{/* Output: resource (obj) */}} 4 | 5 | {{ $icon := resources.GetMatch "images/icon.png" }} 6 | {{ $icon_resized := $icon.Fill (printf "%sx%s Center" (string .) (string .)) }} 7 | {{ return $icon_resized }} 8 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/partials/functions/get_pub_types.html: -------------------------------------------------------------------------------- 1 | {{/* Get Publication Types */}} 2 | {{ $pub_types := slice }} 3 | {{ range site.Data.publication_types.types }} 4 | {{ $pub_types = $pub_types | append (i18n . | default "Uncategorized") }} 5 | {{ end }} 6 | {{ return $pub_types }} 7 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/partials/jsonld/website.html: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/partials/pagination.html: -------------------------------------------------------------------------------- 1 | {{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }} 2 | 12 | {{ end }} 13 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/partials/portfolio_li_compact.html: -------------------------------------------------------------------------------- 1 | {{ $item := .item }} 2 | {{ $js_tag_classes := delimit (apply (apply $item.Params.tags "replace" "." " " "-") "printf" "js-id-%s" ".") " " }} 3 | 4 |
5 | {{ partial "li_compact" $item }} 6 |
7 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/partials/portfolio_li_list.html: -------------------------------------------------------------------------------- 1 | {{ $item := .item }} 2 | {{ $js_tag_classes := delimit (apply (apply $item.Params.tags "replace" "." " " "-") "printf" "js-id-%s" ".") " " }} 3 | 4 |
5 | {{ partial "li_list" $item }} 6 |
7 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/partials/tags.html: -------------------------------------------------------------------------------- 1 | {{ $taxonomy := "tags" }} 2 | {{ with .Param $taxonomy }} 3 |
4 | {{ range $index, $value := . }} 5 | {{ . }} 6 | {{ end }} 7 |
8 | {{ end }} 9 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/section/docs.html: -------------------------------------------------------------------------------- 1 | {{- define "main" -}} 2 | 3 | {{ partial "page_header.html" . }} 4 | 5 |
6 | {{ with .Content }} 7 |
{{ . }}
8 | {{ end }} 9 | 16 |
17 | 18 | {{- end -}} 19 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/shortcodes/alert.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{ .Inner | markdownify | emojify }} 4 |
5 |
6 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/shortcodes/diagram.html: -------------------------------------------------------------------------------- 1 |
2 | {{- safeHTML .Inner -}} 3 |
-------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/shortcodes/fragment.html: -------------------------------------------------------------------------------- 1 | 2 | {{ .Inner }} 3 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/shortcodes/gdocs.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/shortcodes/hl.html: -------------------------------------------------------------------------------- 1 | {{ .Inner | markdownify | emojify }} -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/shortcodes/list_categories.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/shortcodes/list_tags.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/shortcodes/mention.html: -------------------------------------------------------------------------------- 1 | {{- $username := .Get 0 -}} 2 | {{- $username_url := $username | anchorize -}} 3 | {{- $taxonomy := "authors" -}} 4 | {{- $profile_page := site.GetPage (printf "/%s/%s" $taxonomy $username_url) -}} 5 | {{- $name := $profile_page.Params.name | default ($username|markdownify) -}} 6 | {{- with $profile_page -}} 7 | {{$name}} 8 | {{- else -}} 9 | {{- $name -}} 10 | {{- end -}} 11 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/shortcodes/slide.html: -------------------------------------------------------------------------------- 1 | {{ $non_data_attributes := slice "id" "class" }} 2 |
7 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/shortcodes/speaker_note.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/shortcodes/staticref.html: -------------------------------------------------------------------------------- 1 | {{ .Inner }} -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/shortcodes/toc.html: -------------------------------------------------------------------------------- 1 |

{{ i18n "table_of_contents" }}

2 | {{ $.Page.TableOfContents }} 3 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/slides/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio-conf-2020/intro-to-ml-tidy/210a6bd138258dcfeb59c33deafd83d648f5cda7/site/themes/hugo-academic/layouts/slides/list.html -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/slides/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "slides" (union (slice .Page) .Pages) }} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/layouts/widget_page/single.html: -------------------------------------------------------------------------------- 1 | {{- define "main" -}} 2 | {{ partial "widget_page.html" . }} 3 | {{- end -}} 4 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "academic", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "bootstrap": { 8 | "version": "4.3.1", 9 | "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.3.1.tgz", 10 | "integrity": "sha512-rXqOmH1VilAt2DyPzluTi2blhk17bO7ef+zLLPlWvG494pDxcM234pJ8wTc/6R40UWizAIIMgxjvxZg5kmsbag==" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/scripts/gen_demo_resources.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env zsh 2 | 3 | # Generate preprocessed resources for demo site whilst also removing disused resources. 4 | # Run this script from the root Academic dir. 5 | HUGO_THEME=academic hugo --source exampleSite --themesDir ../../ --gc 6 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/scripts/update_bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # Script to copy Bootstrap files into project after running `npm install` to download Bootstrap. 3 | 4 | ASSETS_JS_DIR="assets/js/vendor/" 5 | ASSETS_SCSS_DIR="assets/scss/vendor/" 6 | 7 | mkdir -p $ASSETS_SCSS_DIR/bootstrap/ 8 | 9 | cp node_modules/bootstrap/dist/js/bootstrap.min.js $ASSETS_JS_DIR 10 | cp -r node_modules/bootstrap/scss/* $ASSETS_SCSS_DIR/bootstrap/ 11 | 12 | # cp node_modules/jquery/dist/jquery.min.js $ASSETS_JS_DIR 13 | # cp node_modules/popper.js/dist/umd/popper.min.js $ASSETS_JS_DIR 14 | -------------------------------------------------------------------------------- /site/themes/hugo-academic/scripts/view_demo.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env zsh 2 | 3 | # View the demo site on any local devices by binding the local IP on port 1315. 4 | # Run this script from the root Academic dir. 5 | HUGO_THEME=academic hugo --source exampleSite --themesDir ../../ --i18n-warnings --bind=0.0.0.0 -p 1315 --baseURL=http://0.0.0.0:1315 server 6 | -------------------------------------------------------------------------------- /workshop-conf-2020.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | --------------------------------------------------------------------------------