├── .Rbuildignore ├── .Rprofile ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── README.md ├── config.toml ├── config └── _default │ ├── menus.toml │ └── params.toml ├── content ├── author │ ├── _index.md │ ├── davis │ │ └── _index.md │ └── max │ │ └── _index.md ├── books │ ├── _index.md │ ├── fes │ │ ├── cover.jpg │ │ └── index.md │ ├── moderndive │ │ ├── cover.png │ │ └── index.md │ ├── smltar │ │ ├── cover.png │ │ └── index.md │ ├── tidytext │ │ ├── cover.png │ │ └── index.md │ └── tmwr │ │ ├── cover.png │ │ └── index.md ├── contribute │ └── index.md ├── find │ ├── _index.md │ ├── all │ │ ├── index.Rmd │ │ ├── index.html │ │ └── index_files │ │ │ ├── crosstalk │ │ │ ├── css │ │ │ │ └── crosstalk.min.css │ │ │ ├── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ │ └── scss │ │ │ │ └── crosstalk.scss │ │ │ ├── datatables-binding │ │ │ └── datatables.js │ │ │ ├── datatables-css │ │ │ └── datatables-crosstalk.css │ │ │ ├── dt-core │ │ │ ├── css │ │ │ │ ├── jquery.dataTables.extra.css │ │ │ │ └── jquery.dataTables.min.css │ │ │ └── js │ │ │ │ └── jquery.dataTables.min.js │ │ │ ├── header-attrs │ │ │ └── header-attrs.js │ │ │ ├── htmlwidgets │ │ │ └── htmlwidgets.js │ │ │ ├── jquery │ │ │ ├── jquery-3.6.0.js │ │ │ ├── jquery-3.6.0.min.js │ │ │ └── jquery-3.6.0.min.map │ │ │ ├── nouislider │ │ │ ├── jquery.nouislider.min.css │ │ │ └── jquery.nouislider.min.js │ │ │ └── selectize │ │ │ ├── selectize.bootstrap3.css │ │ │ └── selectize.min.js │ ├── parsnip │ │ ├── index.Rmd │ │ ├── index.html │ │ ├── index_files │ │ │ ├── crosstalk │ │ │ │ ├── css │ │ │ │ │ └── crosstalk.min.css │ │ │ │ ├── js │ │ │ │ │ ├── crosstalk.js │ │ │ │ │ ├── crosstalk.js.map │ │ │ │ │ ├── crosstalk.min.js │ │ │ │ │ └── crosstalk.min.js.map │ │ │ │ └── scss │ │ │ │ │ └── crosstalk.scss │ │ │ ├── datatables-binding │ │ │ │ └── datatables.js │ │ │ ├── datatables-css │ │ │ │ └── datatables-crosstalk.css │ │ │ ├── dt-core │ │ │ │ ├── css │ │ │ │ │ ├── jquery.dataTables.extra.css │ │ │ │ │ └── jquery.dataTables.min.css │ │ │ │ └── js │ │ │ │ │ └── jquery.dataTables.min.js │ │ │ ├── htmlwidgets │ │ │ │ └── htmlwidgets.js │ │ │ ├── jquery │ │ │ │ ├── jquery-3.6.0.js │ │ │ │ ├── jquery-3.6.0.min.js │ │ │ │ └── jquery-3.6.0.min.map │ │ │ ├── nouislider │ │ │ │ ├── jquery.nouislider.min.css │ │ │ │ └── jquery.nouislider.min.js │ │ │ └── selectize │ │ │ │ ├── selectize.bootstrap3.css │ │ │ │ └── selectize.min.js │ │ └── parsnip_thumbnail.png │ └── recipes │ │ ├── index.Rmd │ │ ├── index.html │ │ ├── index_files │ │ ├── crosstalk │ │ │ ├── css │ │ │ │ └── crosstalk.min.css │ │ │ ├── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ │ └── scss │ │ │ │ └── crosstalk.scss │ │ ├── datatables-binding │ │ │ └── datatables.js │ │ ├── datatables-css │ │ │ └── datatables-crosstalk.css │ │ ├── dt-core │ │ │ ├── css │ │ │ │ ├── jquery.dataTables.extra.css │ │ │ │ └── jquery.dataTables.min.css │ │ │ └── js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── htmlwidgets │ │ │ └── htmlwidgets.js │ │ ├── jquery │ │ │ ├── jquery-3.6.0.js │ │ │ ├── jquery-3.6.0.min.js │ │ │ └── jquery-3.6.0.min.map │ │ ├── nouislider │ │ │ ├── jquery.nouislider.min.css │ │ │ └── jquery.nouislider.min.js │ │ └── selectize │ │ │ ├── selectize.bootstrap3.css │ │ │ └── selectize.min.js │ │ └── recipes_thumbnail.jpg ├── help │ └── index.md ├── home │ ├── band_one.md │ ├── band_three.md │ └── band_two.md ├── learn │ ├── _index.md │ ├── common.R │ ├── develop │ │ ├── _index.md │ │ ├── broom │ │ │ ├── index.Rmarkdown │ │ │ ├── index.markdown │ │ │ └── index_files │ │ │ │ ├── kePrint │ │ │ │ └── kePrint.js │ │ │ │ └── lightable │ │ │ │ └── lightable.css │ │ ├── metrics │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ ├── models │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ ├── parameters │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ ├── recipes │ │ │ ├── figs │ │ │ │ ├── carbon_dist-1.svg │ │ │ │ └── cdf_plot-1.svg │ │ │ ├── index.Rmarkdown │ │ │ ├── index.markdown │ │ │ └── index_files │ │ │ │ └── figure-html │ │ │ │ ├── carbon_dist-1.png │ │ │ │ └── cdf_plot-1.png │ │ ├── thumbnail.png │ │ └── toolbox.svg │ ├── models │ │ ├── _index.md │ │ ├── calibration │ │ │ ├── figs │ │ │ │ ├── beta-cal-1.svg │ │ │ │ ├── break-logistic-1.svg │ │ │ │ ├── break-plot-1.svg │ │ │ │ ├── break-windowed-1.svg │ │ │ │ ├── calibrated-res-1.svg │ │ │ │ ├── isoreg-cal-1.svg │ │ │ │ ├── logistic-cal-1.svg │ │ │ │ └── prob-hist-1.svg │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ ├── coefficients │ │ │ ├── figs │ │ │ │ ├── glmnet-plot-1.svg │ │ │ │ └── lm-plot-1.svg │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ ├── linear-regression.svg │ │ ├── parsnip-nnet │ │ │ ├── figs │ │ │ │ ├── biv-boundary-1.svg │ │ │ │ └── biv-plot-1.svg │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ ├── parsnip-ranger-glmnet │ │ │ ├── figs │ │ │ │ └── glmn-pred-1.svg │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ ├── pls │ │ │ ├── figs │ │ │ │ └── plot-1.svg │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ ├── sub-sampling │ │ │ ├── figs │ │ │ │ └── merge-metrics-1.svg │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ ├── thumbnail.png │ │ └── time-series │ │ │ ├── figs │ │ │ └── plot-1.svg │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ ├── statistics │ │ ├── _index.md │ │ ├── bootstrap │ │ │ ├── figs │ │ │ │ ├── unnamed-chunk-1-1.svg │ │ │ │ ├── unnamed-chunk-2-1.svg │ │ │ │ ├── unnamed-chunk-6-1.svg │ │ │ │ ├── unnamed-chunk-8-1.svg │ │ │ │ └── unnamed-chunk-9-1.svg │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ ├── infer │ │ │ ├── figs │ │ │ │ ├── visualize-1.svg │ │ │ │ ├── visualize2-1.svg │ │ │ │ ├── viz_null_fits-1.svg │ │ │ │ ├── viz_t_ci-1.svg │ │ │ │ └── viz_t_dist-1.svg │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ ├── k-means │ │ │ ├── figs │ │ │ │ ├── unnamed-chunk-1-1.svg │ │ │ │ ├── unnamed-chunk-10-1.svg │ │ │ │ ├── unnamed-chunk-8-1.svg │ │ │ │ └── unnamed-chunk-9-1.svg │ │ │ ├── index.Rmarkdown │ │ │ ├── index.markdown │ │ │ └── kmeans.gif │ │ ├── thumbnail.png │ │ ├── tidy-analysis │ │ │ ├── figs │ │ │ │ └── unnamed-chunk-2-1.svg │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ └── xtabs │ │ │ ├── figs │ │ │ ├── plot-indep-1.svg │ │ │ ├── visualize-indep-1.svg │ │ │ ├── visualize-indep-both-1.svg │ │ │ ├── visualize-indep-gof-1.svg │ │ │ └── visualize-indep-theor-1.svg │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ └── work │ │ ├── _index.md │ │ ├── bayes-opt │ │ ├── figs │ │ │ ├── bo-param-plot-1.svg │ │ │ └── bo-plot-1.svg │ │ ├── index.Rmarkdown │ │ └── index.markdown │ │ ├── case-weights │ │ ├── figs │ │ │ ├── unnamed-chunk-3-1.svg │ │ │ └── unnamed-chunk-4-1.svg │ │ ├── index.Rmarkdown │ │ └── index.markdown │ │ ├── data.svg │ │ ├── multi-scale │ │ ├── figs │ │ │ ├── unnamed-chunk-10-1.svg │ │ │ ├── unnamed-chunk-11-1.svg │ │ │ ├── unnamed-chunk-12-1.svg │ │ │ ├── unnamed-chunk-4-1.svg │ │ │ ├── unnamed-chunk-5-1.svg │ │ │ └── unnamed-chunk-6-1.svg │ │ ├── index.Rmarkdown │ │ ├── index.markdown │ │ └── plots.csv │ │ ├── nested-resampling │ │ ├── figs │ │ │ ├── choose-1.svg │ │ │ ├── not-nested-1.svg │ │ │ ├── resampling.svg │ │ │ └── rmse-plot-1.svg │ │ ├── index.Rmarkdown │ │ └── index.markdown │ │ ├── thumbnail.png │ │ ├── tune-svm │ │ ├── figs │ │ │ └── augment-preds-1.svg │ │ ├── index.Rmarkdown │ │ ├── index.markdown │ │ └── ionosphere.csv │ │ └── tune-text │ │ ├── figs │ │ ├── grid-plot-1.svg │ │ ├── iter-plot-1.svg │ │ └── var-plot-1.svg │ │ ├── index.Rmarkdown │ │ └── index.markdown ├── packages │ └── index.md └── start │ ├── _index.md │ ├── case-study │ ├── figs │ │ ├── logistic-results-1.svg │ │ ├── logistic-roc-curve-1.svg │ │ ├── lr-plot-lines-1.svg │ │ ├── rf-importance-1.svg │ │ ├── rf-lr-roc-curve-1.svg │ │ ├── rf-results-1.svg │ │ ├── rf-roc-curve-1.svg │ │ └── test-set-roc-curve-1.svg │ ├── hotels.csv │ ├── img │ │ ├── hotel.jpg │ │ └── validation-split.svg │ ├── index.Rmarkdown │ ├── index.markdown │ └── index_files │ │ └── header-attrs-2.1 │ │ └── header-attrs.js │ ├── common.R │ ├── models │ ├── figs │ │ ├── dwplot-1.svg │ │ ├── lm-all-pred-1.svg │ │ ├── stan-pred-1.svg │ │ └── urchin-plot-1.svg │ ├── index.Rmarkdown │ ├── index.markdown │ └── urchins.csv │ ├── recipes │ ├── figs │ │ └── roc-plot-1.svg │ ├── index.Rmarkdown │ ├── index.markdown │ └── index_files │ │ ├── kePrint │ │ └── kePrint.js │ │ └── lightable │ │ └── lightable.css │ ├── resampling │ ├── img │ │ ├── cells.png │ │ └── resampling.svg │ ├── index.Rmarkdown │ ├── index.markdown │ └── index_files │ │ ├── kePrint │ │ └── kePrint.js │ │ └── lightable │ │ └── lightable.css │ └── tuning │ ├── figs │ ├── best-rf-1.svg │ ├── best-tree-1.svg │ ├── last-fit-1.svg │ ├── rpart-plot-1.svg │ └── vip-1.svg │ ├── index.Rmarkdown │ └── index.markdown ├── data ├── homepage.yaml └── resources.yaml ├── index.Rmd ├── layouts ├── _default │ ├── list.html │ └── single.html ├── find │ ├── list.html │ └── single.html ├── index.html ├── learn-subsection │ ├── list.html │ └── single.html ├── learn │ └── list.html ├── partials │ ├── find-sidebar.html │ ├── footer.html │ ├── hanchor.html │ ├── head_custom.html │ ├── help.html │ ├── homepage_sticky.html │ ├── learn-sidebar.html │ ├── meta.html │ ├── resources_sticky.html │ ├── start-sidebar.html │ └── topics-sidebar.html ├── shortcodes │ ├── blogdown │ │ └── postref.html │ ├── note.html │ ├── rstudio-tip.html │ ├── test-drive.html │ └── warning.html └── start │ ├── list.html │ └── single.html ├── netlify.toml ├── resources └── _gen │ └── images │ └── books │ ├── fes │ ├── cover_hu3326d100d263260914699e43b6fa4551_11841_150x150_fill_q75_box_smart1.jpg │ ├── cover_hu3326d100d263260914699e43b6fa4551_11841_150x150_fit_q75_box.jpg │ ├── cover_hu3326d100d263260914699e43b6fa4551_11841_300x300_fill_q75_box_smart1.jpg │ ├── cover_hu3326d100d263260914699e43b6fa4551_11841_300x300_fill_q75_box_top.jpg │ ├── cover_hu3326d100d263260914699e43b6fa4551_11841_500x500_fill_q75_box_center.jpg │ └── cover_hu3326d100d263260914699e43b6fa4551_11841_500x500_fill_q75_box_top.jpg │ ├── moderndive │ ├── cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_150x150_fill_box_smart1_2.png │ ├── cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_150x150_fit_box_2.png │ ├── cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_300x300_fill_box_smart1_2.png │ ├── cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_300x300_fill_box_top_2.png │ ├── cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_500x500_fill_box_center_2.png │ ├── cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_500x500_fill_box_top_2.png │ └── cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_500x500_fill_box_top_3.png │ ├── smltar │ ├── cover_hu78ba12b063b8f23aca2700d6525fd775_47957_500x500_fill_q75_box_top.jpg │ ├── cover_hub976e5c6de164a699cbf934c19f6130b_8580_500x500_fill_box_top_2.png │ └── cover_hub976e5c6de164a699cbf934c19f6130b_8580_500x500_fill_box_top_3.png │ ├── tidytext │ ├── cover_huddc6c3235d904191d21f4e5f7e097c21_88341_150x150_fill_box_smart1_2.png │ ├── cover_huddc6c3235d904191d21f4e5f7e097c21_88341_150x150_fit_box_2.png │ ├── cover_huddc6c3235d904191d21f4e5f7e097c21_88341_300x300_fill_box_smart1_2.png │ ├── cover_huddc6c3235d904191d21f4e5f7e097c21_88341_300x300_fill_box_top_2.png │ ├── cover_huddc6c3235d904191d21f4e5f7e097c21_88341_500x500_fill_box_center_2.png │ ├── cover_huddc6c3235d904191d21f4e5f7e097c21_88341_500x500_fill_box_top_2.png │ └── cover_huddc6c3235d904191d21f4e5f7e097c21_88341_500x500_fill_box_top_3.png │ └── tmwr │ ├── cover_hu0f2672b9420a6b581c38962b08745838_178729_500x500_fill_box_top_3.png │ ├── cover_hu1be595f2b9a42191080f50a90ae1e59c_116699_500x500_fill_q75_box_top.jpg │ ├── cover_hu1f9c069fa4003c768d62d7d9f59935c1_2351_500x500_fill_box_top_3.png │ ├── cover_hu23e99dedaa40f2273e8f7ee8a663c02f_246939_500x500_fill_box_top_3.png │ ├── cover_hu3850665c946d86f10f9de3689b9095ad_32768_500x500_fill_box_top_3.png │ ├── cover_hu3850665c946d86f10f9de3689b9095ad_606844_500x500_fill_box_top_3.png │ ├── cover_hu3b2a1b3dbb7e8e261d9cf8b1596f63f0_2343156_500x500_fill_box_top_3.png │ ├── cover_hu4887ab403897df9972c1c51f39593b50_122242_500x500_fill_box_top_3.png │ └── cover_hub21bd02bbe2eabcd4b78cc19ae857e8e_40822_500x500_fill_box_top_3.png ├── static ├── _redirects ├── code │ ├── curves_card.jpg │ ├── get_pkgdown_urls.R │ ├── installs.R │ ├── make_tidymodels_curves.R │ └── req_pkgs.R ├── css │ ├── fonts.css │ ├── images │ │ ├── menuToggler.svg │ │ ├── tidy-back-01.svg │ │ ├── tidy-back-01a.svg │ │ ├── tidy-back-02.svg │ │ ├── tidy-back-02a.svg │ │ ├── tidy-back-03.svg │ │ ├── tidy-back-03a.svg │ │ ├── tidy-event-back-conf.svg │ │ ├── tidy-event-back-meetup.svg │ │ ├── tidy-packages-back-01.svg │ │ ├── tidy-packages-back-02.svg │ │ └── tidy-packages-back-03.svg │ └── tm.css ├── data │ └── imbal_data.csv ├── fonts │ ├── lato-v16-latin-300.eot │ ├── lato-v16-latin-300.svg │ ├── lato-v16-latin-300.ttf │ ├── lato-v16-latin-300.woff │ ├── lato-v16-latin-300.woff2 │ ├── lato-v16-latin-700.eot │ ├── lato-v16-latin-700.svg │ ├── lato-v16-latin-700.ttf │ ├── lato-v16-latin-700.woff │ ├── lato-v16-latin-700.woff2 │ ├── lato-v16-latin-italic.eot │ ├── lato-v16-latin-italic.svg │ ├── lato-v16-latin-italic.ttf │ ├── lato-v16-latin-italic.woff │ ├── lato-v16-latin-italic.woff2 │ ├── lato-v16-latin-regular.eot │ ├── lato-v16-latin-regular.svg │ ├── lato-v16-latin-regular.ttf │ ├── lato-v16-latin-regular.woff │ └── lato-v16-latin-regular.woff2 ├── images │ ├── broom.png │ ├── cover.png │ ├── dials.png │ ├── error.png │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ ├── feature_summary_large_image.jpg │ ├── giraffe.jpg │ ├── help.png │ ├── parsnip-flagger.jpg │ ├── parsnip.png │ ├── placeholder.png │ ├── recipes.png │ ├── resampling.svg │ ├── robot.png │ ├── rsample.png │ ├── rstudio.png │ ├── tidymodels.png │ ├── tune.png │ ├── workflows.png │ └── yardstick.png ├── js │ └── tm.js └── 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 │ ├── css │ │ ├── jquery.dataTables.extra.css │ │ └── jquery.dataTables.min.css │ └── js │ │ └── jquery.dataTables.min.js │ ├── header-attrs │ └── header-attrs.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 ├── themes └── hugo-tourmaline │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── archetypes │ ├── blog │ │ └── index.md │ ├── event-archive │ │ └── _index.md │ └── events │ │ └── index.md │ ├── exampleSite │ ├── config.toml │ ├── config │ │ └── _default │ │ │ ├── menus.toml │ │ │ └── params.toml │ └── content │ │ ├── author │ │ ├── _index.md │ │ ├── alison │ │ │ └── _index.md │ │ ├── carl │ │ │ └── _index.md │ │ ├── garrett │ │ │ └── _index.md │ │ ├── greg │ │ │ └── _index.md │ │ └── mine │ │ │ └── _index.md │ │ ├── blog │ │ ├── 2019-02-haven-2-1-0 │ │ │ ├── haven-2-1-0-sq.jpg │ │ │ ├── haven-2-1-0-wd.jpg │ │ │ ├── index.Rmarkdown │ │ │ └── index.markdown │ │ ├── 2019-02-purrr-0-3-0 │ │ │ ├── index.Rmarkdown │ │ │ ├── index.markdown │ │ │ ├── purrr-0-3-0-sq.jpg │ │ │ └── purrr-0-3-0-wd.jpg │ │ ├── 2019-02-stringr-1-4-0 │ │ │ ├── index.Rmarkdown │ │ │ ├── index.markdown │ │ │ ├── stringr-1-4-0-sq.jpg │ │ │ └── stringr-1-4-0-wd.jpg │ │ └── _index.md │ │ ├── contribute │ │ └── index.md │ │ ├── events │ │ ├── _index.md │ │ ├── archive │ │ │ └── _index.md │ │ ├── icse-2019 │ │ │ └── index.md │ │ ├── rstudio-conf-2018 │ │ │ └── index.md │ │ ├── rstudio-conf-2019 │ │ │ └── index.md │ │ ├── rstudio-conf-2020 │ │ │ ├── index.md │ │ │ ├── pedro-lastra-167351-unsplash-sq.jpg │ │ │ └── pedro-lastra-167351-unsplash-wd.jpg │ │ └── tidy-tools-2019 │ │ │ └── index.md │ │ ├── help │ │ ├── help-is-on-the-way.jpg │ │ ├── index.md │ │ ├── reprex-addin.png │ │ └── reprex-addins-menu.png │ │ ├── home │ │ ├── band_one.md │ │ ├── band_three.md │ │ └── band_two.md │ │ ├── learn │ │ └── index.md │ │ └── packages │ │ └── index.md │ ├── layouts │ ├── _default │ │ ├── baseof.html │ │ ├── list.html │ │ ├── rss.xml │ │ ├── section.rss.xml │ │ └── single.html │ ├── author │ │ ├── list.html │ │ └── terms.html │ ├── blog │ │ └── list.html │ ├── event-archive │ │ └── list.html │ ├── events │ │ └── list.html │ ├── index.html │ └── partials │ │ ├── calendar.html │ │ ├── custom-site.css │ │ ├── disqus.html │ │ ├── events_sticky.html │ │ ├── footer.html │ │ ├── footer_highlightjs.html │ │ ├── footer_mathjax.html │ │ ├── head_custom.html │ │ ├── head_highlightjs.html │ │ ├── head_includes.html │ │ ├── header.html │ │ ├── meta.html │ │ ├── nav.html │ │ ├── pretty_author_names.html │ │ ├── pretty_date_ranges.html │ │ └── sidebar.html │ ├── static │ ├── css │ │ ├── fa5-all.css │ │ ├── fa5-all.min.css │ │ ├── fonts.css │ │ ├── images │ │ │ ├── gitHubLogo.svg │ │ │ ├── logoRStudioWhite.svg │ │ │ ├── menuToggler.svg │ │ │ ├── tidy-back-01.svg │ │ │ ├── tidy-back-02.svg │ │ │ ├── tidy-back-03.svg │ │ │ ├── tidy-event-back-conf.svg │ │ │ ├── tidy-event-back-meetup.svg │ │ │ ├── tidy-packages-back-01.svg │ │ │ ├── tidy-packages-back-02.svg │ │ │ ├── tidy-packages-back-03.svg │ │ │ ├── tidyCategoryCaseStudy.svg │ │ │ ├── tidyCategoryDeepDive.svg │ │ │ ├── tidyCategoryLearn.svg │ │ │ ├── tidyCategoryOther.svg │ │ │ ├── tidyCategoryPackage.svg │ │ │ ├── tidyCategoryProgramming.svg │ │ │ └── twitterLogo.svg │ │ └── main-site.css │ ├── favicon.ico │ ├── fonts │ │ ├── muli-v12-latin-300.eot │ │ ├── muli-v12-latin-300.svg │ │ ├── muli-v12-latin-300.ttf │ │ ├── muli-v12-latin-300.woff │ │ ├── muli-v12-latin-300.woff2 │ │ ├── muli-v12-latin-700.eot │ │ ├── muli-v12-latin-700.svg │ │ ├── muli-v12-latin-700.ttf │ │ ├── muli-v12-latin-700.woff │ │ ├── muli-v12-latin-700.woff2 │ │ ├── muli-v12-latin-regular.eot │ │ ├── muli-v12-latin-regular.svg │ │ ├── muli-v12-latin-regular.ttf │ │ ├── muli-v12-latin-regular.woff │ │ ├── muli-v12-latin-regular.woff2 │ │ ├── source-code-pro-v11-latin-italic.eot │ │ ├── source-code-pro-v11-latin-italic.svg │ │ ├── source-code-pro-v11-latin-italic.ttf │ │ ├── source-code-pro-v11-latin-italic.woff │ │ ├── source-code-pro-v11-latin-italic.woff2 │ │ ├── source-code-pro-v11-latin-regular.eot │ │ ├── source-code-pro-v11-latin-regular.svg │ │ ├── source-code-pro-v11-latin-regular.ttf │ │ ├── source-code-pro-v11-latin-regular.woff │ │ └── source-code-pro-v11-latin-regular.woff2 │ ├── images │ │ ├── Color │ │ │ └── RStudio-Education.jpg │ │ ├── White │ │ │ └── rstudio-edu.png │ │ ├── bee1.jpg │ │ ├── cover.png │ │ ├── favicon.ico │ │ ├── favicons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── mstile-150x150.png │ │ │ ├── safari-pinned-tab.svg │ │ │ └── site.webmanifest │ │ ├── hex-dplyr.png │ │ ├── hex-forcats.png │ │ ├── hex-ggplot2.png │ │ ├── hex-grey-solid.png │ │ ├── hex-grey.png │ │ ├── hex-haven.png │ │ ├── hex-purrr.png │ │ ├── hex-readr.png │ │ ├── hex-stringr.png │ │ ├── hex-tibble.png │ │ ├── hex-tidyr.png │ │ ├── hex-tidyverse.png │ │ ├── hugo-logo.png │ │ ├── logo.png │ │ └── tidyverse-default.png │ ├── js │ │ ├── home.js │ │ ├── jquery-3.5.1.min.js │ │ ├── math-code.js │ │ └── site.js │ ├── rmarkdown-libs │ │ └── font-awesome │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ └── theme.toml └── tidymodels.org.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^renv$ 2 | ^renv\.lock$ 3 | ^.*\.Rproj$ 4 | ^\.Rproj\.user$ 5 | -------------------------------------------------------------------------------- /.Rprofile: -------------------------------------------------------------------------------- 1 | # REMEMBER to restart R after you modify and save this file! 2 | 3 | # First, execute the global .Rprofile if it exists. You may configure blogdown 4 | # options there, too, so they apply to any blogdown projects. Feel free to 5 | # ignore this part if it sounds too complicated to you. 6 | if (file.exists("~/.Rprofile")) { 7 | base::sys.source("~/.Rprofile", envir = environment()) 8 | } 9 | 10 | library(magrittr) 11 | hugo_version <- readLines("netlify.toml") %>% 12 | stringr::str_subset("HUGO_VERSION") %>% 13 | stringr::str_extract("[0-9]+\\.*[0-9]*\\.*[0-9]*") %>% 14 | unique() 15 | 16 | # fix Hugo version 17 | options(blogdown.hugo.version = hugo_version) 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | .Ruserdata 5 | .DS_Store 6 | public/ 7 | index_cache 8 | content/start/case-study/cache 9 | content/learn/work/bayes-opt/cache 10 | .hugo_build.lock 11 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- 1 | Package: tidymodels.org 2 | Title: Fake description file for that website 3 | Version: 0.0.1.9001 4 | Authors@R: c( 5 | person(given = "Max", family = "Kuhn", 6 | email = "max@rstudio.com", role = c("aut", "cre"), 7 | comment = c(ORCID = "0000-0003-2402-136X")), 8 | person(given = "Alison", family = "Hill", 9 | email = "alison@rstudio.com", role = c("aut"), 10 | comment = c(ORCID = "0000-0002-8082-1890")), 11 | person(given = "Julia", family = "Silge", role = c("aut"), 12 | email = "julia.silge@rstudio.com", 13 | comment = c(ORCID = "0000-0002-3671-836X")), 14 | person("RStudio", role = "cph")) 15 | Description: This file installed required packages to build our website. 16 | License: MIT + file LICENSE 17 | URL: https://github.com/tidymodels/tidymodels.org 18 | Depends: 19 | R (>= 2.10) 20 | Imports: 21 | abind, 22 | AmesHousing, 23 | baguette, 24 | blogdown, 25 | broom.mixed, 26 | devtools, 27 | dials, 28 | discrim, 29 | doMC, 30 | doParallel, 31 | dotwhisker, 32 | DT, 33 | embed, 34 | forecast, 35 | fs, 36 | furrr, 37 | glmnet, 38 | glue, 39 | kableExtra, 40 | keras, 41 | kernlab, 42 | klaR, 43 | mda, 44 | mlbench, 45 | modeldata, 46 | modeltime, 47 | nycflights13, 48 | parsnip, 49 | partykit, 50 | pkgdown, 51 | pls, 52 | plsmod, 53 | poissonreg, 54 | randomForest, 55 | ranger, 56 | rlang, 57 | ROSE, 58 | rpart.plot, 59 | rsample, 60 | rstanarm, 61 | rules, 62 | scales, 63 | sessioninfo, 64 | skimr, 65 | spatialsample, 66 | stacks, 67 | stringr, 68 | sweep, 69 | textfeatures, 70 | textrecipes, 71 | themis, 72 | tidymodels, 73 | tidyposterior, 74 | timetk, 75 | tune, 76 | vip, 77 | zoo 78 | Encoding: UTF-8 79 | LazyData: true 80 | Roxygen: list(markdown = TRUE) 81 | RoxygenNote: 7.0.2.9000 82 | Language: en-US 83 | Remotes: 84 | rstudio/DT 85 | -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- 1 | # Title of your site 2 | title = "Tidymodels" 3 | 4 | # The URL of your site. 5 | # End your URL with a `/` trailing slash, e.g. `https://example.com/`. 6 | baseurl = "https://www.tidymodels.org/" 7 | 8 | # Name the theme folder in `themes/`. 9 | theme = "hugo-tourmaline" 10 | 11 | # Enable analytics by entering your Google Analytics tracking ID 12 | googleAnalytics = "UA-20375833-29" 13 | 14 | relativeurls = false 15 | languageCode = "en-us" 16 | description = "A collection of R packages for modeling and machine learning using tidyverse principles." 17 | disqusShortname = "" 18 | ignoreFiles = ["\\.Rmd$", "_cache$", "\\.Rmarkdown$", "\\.knit\\.md$", "\\.utf8\\.md$"] 19 | # below is critical for non-authors to show up in article listing 20 | preserveTaxonomyNames = true 21 | # uncomment the next line to disable listing authors 22 | # disableKinds = ["taxonomyTerm"] 23 | 24 | [permalinks] 25 | articles = "news/:year/:month/:slug/" 26 | 27 | [taxonomies] 28 | author = "author" 29 | category = "categories" 30 | tag = "tags" 31 | 32 | # Configure BlackFriday Markdown rendering. 33 | # See: https://gohugo.io/getting-started/configuration/#configure-blackfriday 34 | [blackfriday] 35 | hrefTargetBlank = true # `true` opens external links in a new tab. See https://github.com/gohugoio/hugo/issues/2424 36 | angledQuotes = false 37 | latexDashes = true 38 | extensions = ["backslashLineBreak"] 39 | 40 | [markup] 41 | defaultMarkdownHandler = "goldmark" 42 | [markup.tableOfContents] 43 | endLevel = 2 44 | ordered = false 45 | startLevel = 2 46 | [markup.goldmark.renderer] 47 | unsafe = true 48 | [markup.highlight] 49 | style = "pygments" 50 | -------------------------------------------------------------------------------- /config/_default/menus.toml: -------------------------------------------------------------------------------- 1 | # Navigation Bar Links 2 | # The weight parameter defines the order that the links will appear in. 3 | 4 | [[main]] 5 | name = "Packages" 6 | url = "/packages/" 7 | weight = 1 8 | [[main]] 9 | name = "Get Started" 10 | url = "/start/" 11 | weight = 2 12 | [[main]] 13 | name = "Learn" 14 | url = "/learn/" 15 | weight = 3 16 | [[main]] 17 | name = "Help" 18 | url = "/help/" 19 | weight = 4 20 | [[main]] 21 | name = "Contribute" 22 | url = "/contribute/" 23 | weight = 5 24 | [[main]] 25 | name = " " 26 | url = "/find/" 27 | pre = "" 28 | weight = 6 29 | [[main]] 30 | pre = "" 31 | url = "https://github.com/tidymodels/" 32 | weight = 7 33 | 34 | -------------------------------------------------------------------------------- /content/author/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Meet the team 3 | --- 4 | -------------------------------------------------------------------------------- /content/author/davis/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | description: Software Engineer 3 | name: Davis Vaughan 4 | photo: https://github.com/davisVaughan.png 5 | social: 6 | github: davisVaughan 7 | twitter: dvaughan32 8 | website: blog.davisvaughan.com 9 | team: true 10 | --- 11 | 12 | Davis Vaughan is a Software Engineer at RStudio. He is the author or maintainer of several R packages for finance and data analytics, including tidyquant, timetk, tibbletime, sweep, rray and hardhat. He is well-known for this work around creating modeling packages in R. 13 | 14 | -------------------------------------------------------------------------------- /content/author/max/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | description: Software Engineer 3 | name: Max Kuhn 4 | photo: https://github.com/topepo.png 5 | social: 6 | github: topepo 7 | twitter: topepos 8 | website: https://topepo.github.io/caret/ 9 | team: true 10 | --- 11 | 12 | Dr. Max Kuhn is a Software Engineer at RStudio. He is the author or maintainer of several R packages for predictive modeling including caret, AppliedPredictiveModeling, Cubist, C50 and SparseLDA. He routinely teaches classes in predictive modeling at Predictive Analytics World and UseR! and his publications include work on neuroscience biomarkers, drug discovery, molecular diagnostics and response surface methodology. 13 | -------------------------------------------------------------------------------- /content/books/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Books 3 | description: "Study up on statistics and modeling with our comprehensive books." 4 | --- 5 | -------------------------------------------------------------------------------- /content/books/fes/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/books/fes/cover.jpg -------------------------------------------------------------------------------- /content/books/fes/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Feature Engineering & Selection' 3 | description: 'A Practical Approach for Predictive Models' 4 | authors: [Max Kuhn, Kjell Johnson] 5 | weight: 3 6 | --- 7 | 8 | ![](cover.jpg) 9 | 10 | A primary goal of predictive modeling is to find a reliable and effective predictive relationship between an available set of features and an outcome. This book provides an extensive set of techniques for uncovering effective representations of the features for modeling the outcome and for finding an optimal subset of features to improve a model’s predictive performance. 11 | 12 | An **HTML version** of this text can be found at [`https://bookdown.org/max/FES`](https://bookdown.org/max/FES). 13 | 14 | The data sets and R code are available in the GitHub repository [`https://github.com/topepo/FES`](https://github.com/topepo/FES). 15 | 16 | The physical copies are sold by [**Amazon**](https://www.amazon.com/gp/product/1138079227/ref=as_li_tl?ie=UTF8&tag=apm0a-20&camp=1789&creative=9325&linkCode=as2&creativeASIN=1138079227&linkId=c801e78acfc3bc022dbed02af4851962) and [**Taylor & Francis**](https://www.crcpress.com/Feature-Engineering-and-Selection-A-Practical-Approach-for-Predictive-Models/Kuhn-Johnson/p/book/9781138079229). 17 | -------------------------------------------------------------------------------- /content/books/moderndive/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/books/moderndive/cover.png -------------------------------------------------------------------------------- /content/books/moderndive/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Statistical Inference via Data Science' 3 | description: 'A ModernDive into R and the Tidyverse' 4 | authors: [Chester Ismay, Albert Y. Kim] 5 | weight: 5 6 | --- 7 | 8 | ![](cover.png) 9 | 10 | This book is intended to be a gentle introduction to the practice of analyzing data and answering questions using data the way data scientists, statisticians, data journalists, and other researchers would. Over the course of this book, you will develop your "data science toolbox," equipping yourself with tools such as data visualization, data formatting, data wrangling, data modeling using regression, and statistical inference via hypothesis testing and confidence intervals. 11 | 12 | An **HTML version** of this text can be found at [`https://moderndive.com/`](https://moderndive.com/). 13 | 14 | The data sets and R code are available in the GitHub repository [`https://github.com/moderndive/ModernDive_book`](https://github.com/moderndive/ModernDive_book) and also the accompanying `moderndive` R package on [CRAN](https://cran.r-project.org/package=moderndive). 15 | 16 | The physical copies are sold by [**Amazon**](https://www.amazon.com/Statistical-Inference-via-Data-Science/dp/0367409828/) and [**CRC Press**](https://www.crcpress.com/Statistical-Inference-via-Data-Science-A-ModernDive-into-R-and-the-Tidyverse/Ismay-Kim/p/book/9780367409821). 17 | -------------------------------------------------------------------------------- /content/books/smltar/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/books/smltar/cover.png -------------------------------------------------------------------------------- /content/books/smltar/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Supervised Machine Learning for Text Analysis in R' 3 | description: '' 4 | authors: [Emil Hvitfeldt, Julia Silge] 5 | weight: 2 6 | --- 7 | 8 | ![](cover.png) 9 | 10 | This book explains how to preprocess text data for modeling, train models, and evaluate model performance using tools from the tidyverse and tidymodels ecosystem. Models like these can be used to make predictions for new observations, to understand what natural language features or characteristics contribute to differences in the output, and more. If you are already familiar with the basics of predictive modeling, use the comprehensive, detailed examples in this book to extend your skills to the domain of natural language processing. 11 | 12 | This book provides practical guidance and directly applicable knowledge for data scientists and analysts who want to integrate unstructured text data into their modeling pipelines. Learn how to use text data for both regression and classification tasks, and how to apply more straightforward algorithms like regularized regression or support vector machines as well as deep learning approaches. Natural language must be dramatically transformed to be ready for computation, so we explore typical text preprocessing and feature engineering steps like tokenization and word embeddings from the ground up. These steps influence model results in ways we can measure, both in terms of model metrics and other tangible consequences such as how fair or appropriate model results are. 13 | 14 | 15 | An **HTML version** of this text can be found at [`https://smltar.com/`](https://smltar.com/). 16 | 17 | The data sets and R code are available in the GitHub repository [`https://github.com/EmilHvitfeldt/smltar`](https://github.com/EmilHvitfeldt/smltar). 18 | 19 | The physical copies are sold by [**Amazon**](https://amzn.to/3EwcEOK) and [**CRC Press**](https://www.routledge.com/Supervised-Machine-Learning-for-Text-Analysis-in-R/Hvitfeldt-Silge/p/book/9780367554194). 20 | 21 | -------------------------------------------------------------------------------- /content/books/tidytext/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/books/tidytext/cover.png -------------------------------------------------------------------------------- /content/books/tidytext/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Text Mining with R' 3 | description: 'A Tidy Approach' 4 | authors: [Julia Silge, David Robinson] 5 | weight: 4 6 | --- 7 | 8 | ![](cover.png) 9 | 10 | This practical book provides an introduction to text mining using tidy data principles in R, focusing on exploratory data analysis for text. Using tidy data principles can make text mining task easier and more effective; in this book, learn how to manipulate, summarize, and visualize characteristics of text using these methods and R packages from the tidy tool ecosystem. 11 | 12 | An **HTML version** of this text can be found at [`https://www.tidytextmining.com/`](https://www.tidytextmining.com/). 13 | 14 | The data sets and R code are available in the GitHub repository [`https://github.com/dgrtwo/tidy-text-mining`](https://github.com/dgrtwo/tidy-text-mining). 15 | 16 | The physical copies are sold by [**Amazon**](http://amzn.to/2tZkmxG) and [**O’Reilly**](http://www.jdoqocy.com/click-4428796-11290546?url=http%3A%2F%2Fshop.oreilly.com%2Fproduct%2F0636920067153.do%3Fcmp%3Daf-strata-books-video-product_cj_0636920067153_%25zp&cjsku=0636920067153). 17 | -------------------------------------------------------------------------------- /content/books/tmwr/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/books/tmwr/cover.png -------------------------------------------------------------------------------- /content/books/tmwr/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Tidy Modeling with R' 3 | description: '' 4 | authors: [Max Kuhn, Julia Silge] 5 | weight: 1 6 | --- 7 | 8 | ![](cover.png) 9 | 10 | Modeling of data is integral to science, business, politics, and many other aspects of our lives. The goals of this book are to: 11 | 12 | - introduce and demonstrate how to use the tidymodels packages, and 13 | - outline good practices for the phases of the modeling process. 14 | 15 | An **HTML version** of this text can be found at . 16 | 17 | The sources to create the book are available in the GitHub repository . 18 | -------------------------------------------------------------------------------- /content/find/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Explore tidymodels" 3 | description: "Explore searchable tables of all tidymodels packages and functions." 4 | --- 5 | 6 | Below you'll find searchable tables to help you explore the tidymodels packages and functions. The tables also include links to the relevant reference page to help you navigate the package documentation. Use the following categories to guide you: 7 | 8 | -------------------------------------------------------------------------------- /content/find/all/index.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Search all of tidymodels" 3 | disable_jquery: true 4 | weight: 1 5 | --- 6 | 7 | ```{r ex_setup, include=FALSE} 8 | knitr::opts_chunk$set( 9 | message = FALSE, 10 | digits = 3, 11 | collapse = TRUE, 12 | comment = "#>" 13 | ) 14 | options(digits = 3) 15 | script <- here::here("static/code/get_pkgdown_urls.R") 16 | source(script) 17 | library(DT) 18 | ``` 19 | 20 | 21 | Here are all the functions available across all of the [tidymodels packages](/packages/). Click on the link in the **topic** column to find the relevant reference documentation. 22 | 23 |
24 | 25 | ```{r table-compute, include = FALSE} 26 | pkgs <- c("applicable", "baguette", "broom", "brulee", "butcher", 27 | "corrr", "dials", "discrim", 28 | "embed", "finetune", "hardhat", "infer", "modeldata", "modeldb", 29 | "multilevelmod", "parsnip", "plsmod", 30 | "poissonreg", "probably", "recipes", "rsample", "rules", 31 | "shinymodels", "spatialsample", "stacks", 32 | "textrecipes", "themis", "tidypredict", "tune", "yardstick", 33 | "usemodels", "workflows", "workflowsets") 34 | pkgs <- tibble(pkg = pkgs, 35 | base_url = paste0("https://", pkg, ".tidymodels.org/")) 36 | 37 | pkg_urls <- get_pkgdown_urls(pkgs) %>% 38 | select(title, topic, package) 39 | ``` 40 | 41 | 42 | ```{r table-display, echo = FALSE} 43 | pkg_urls %>% 44 | mutate(package = as.factor(package)) %>% 45 | datatable(rownames = FALSE, 46 | class = 'cell-border stripe', 47 | filter = 'top', 48 | escape = FALSE, 49 | options = list(pageLength = 5)) 50 | ``` 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /content/find/all/index_files/crosstalk/css/crosstalk.min.css: -------------------------------------------------------------------------------- 1 | .container-fluid.crosstalk-bscols{margin-left:-30px;margin-right:-30px;white-space:normal}body>.container-fluid.crosstalk-bscols{margin-left:auto;margin-right:auto}.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column{display:inline-block;padding-right:12px;vertical-align:top}@media only screen and (max-width: 480px){.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column{display:block;padding-right:inherit}}.crosstalk-input{margin-bottom:15px}.crosstalk-input .control-label{margin-bottom:0;vertical-align:middle}.crosstalk-input input[type="checkbox"]{margin:4px 0 0;margin-top:1px;line-height:normal}.crosstalk-input .checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.crosstalk-input .checkbox>label{padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.crosstalk-input .checkbox input[type="checkbox"],.crosstalk-input .checkbox-inline input[type="checkbox"]{position:absolute;margin-top:2px;margin-left:-20px}.crosstalk-input .checkbox+.checkbox{margin-top:-5px}.crosstalk-input .checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.crosstalk-input .checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px} 2 | -------------------------------------------------------------------------------- /content/find/all/index_files/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 | 9 | 10 | /* 11 | Fix https://github.com/rstudio/DT/issues/563 12 | If the `table.display` is set to "block" (e.g., pkgdown), the browser will display 13 | datatable objects strangely. The search panel and the page buttons will still be 14 | in full-width but the table body will be "compact" and shorter. 15 | In therory, having this attributes will affect `dom="t"` 16 | with `display: block` users. But in reality, there should be no one. 17 | We may remove the below lines in the future if the upstream agree to have this there. 18 | See https://github.com/DataTables/DataTablesSrc/issues/160 19 | */ 20 | 21 | table.dataTable { 22 | display: table; 23 | } 24 | -------------------------------------------------------------------------------- /content/find/all/index_files/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 | 10 | /* The datatables' theme CSS file doesn't define 11 | the color but with white background. It leads to an issue that 12 | when the HTML's body color is set to 'white', the user can't 13 | see the text since the background is white. One case happens in the 14 | RStudio's IDE when inline viewing the DT table inside an Rmd file, 15 | if the IDE theme is set to "Cobalt". 16 | 17 | See https://github.com/rstudio/DT/issues/447 for more info 18 | 19 | This fixes should have little side-effects because all the other elements 20 | of the default theme use the #333 font color. 21 | 22 | TODO: The upstream may use relative colors for both the table background 23 | and the color. It means the table can display well without this patch 24 | then. At that time, we need to remove the below CSS attributes. 25 | */ 26 | div.datatables { 27 | color: #333; 28 | } 29 | -------------------------------------------------------------------------------- /content/find/all/index_files/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /content/find/parsnip/index_files/crosstalk/css/crosstalk.min.css: -------------------------------------------------------------------------------- 1 | .container-fluid.crosstalk-bscols{margin-left:-30px;margin-right:-30px;white-space:normal}body>.container-fluid.crosstalk-bscols{margin-left:auto;margin-right:auto}.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column{display:inline-block;padding-right:12px;vertical-align:top}@media only screen and (max-width: 480px){.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column{display:block;padding-right:inherit}}.crosstalk-input{margin-bottom:15px}.crosstalk-input .control-label{margin-bottom:0;vertical-align:middle}.crosstalk-input input[type="checkbox"]{margin:4px 0 0;margin-top:1px;line-height:normal}.crosstalk-input .checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.crosstalk-input .checkbox>label{padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.crosstalk-input .checkbox input[type="checkbox"],.crosstalk-input .checkbox-inline input[type="checkbox"]{position:absolute;margin-top:2px;margin-left:-20px}.crosstalk-input .checkbox+.checkbox{margin-top:-5px}.crosstalk-input .checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.crosstalk-input .checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px} 2 | -------------------------------------------------------------------------------- /content/find/parsnip/index_files/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 | 9 | 10 | /* 11 | Fix https://github.com/rstudio/DT/issues/563 12 | If the `table.display` is set to "block" (e.g., pkgdown), the browser will display 13 | datatable objects strangely. The search panel and the page buttons will still be 14 | in full-width but the table body will be "compact" and shorter. 15 | In therory, having this attributes will affect `dom="t"` 16 | with `display: block` users. But in reality, there should be no one. 17 | We may remove the below lines in the future if the upstream agree to have this there. 18 | See https://github.com/DataTables/DataTablesSrc/issues/160 19 | */ 20 | 21 | table.dataTable { 22 | display: table; 23 | } 24 | -------------------------------------------------------------------------------- /content/find/parsnip/index_files/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 | 10 | /* The datatables' theme CSS file doesn't define 11 | the color but with white background. It leads to an issue that 12 | when the HTML's body color is set to 'white', the user can't 13 | see the text since the background is white. One case happens in the 14 | RStudio's IDE when inline viewing the DT table inside an Rmd file, 15 | if the IDE theme is set to "Cobalt". 16 | 17 | See https://github.com/rstudio/DT/issues/447 for more info 18 | 19 | This fixes should have little side-effects because all the other elements 20 | of the default theme use the #333 font color. 21 | 22 | TODO: The upstream may use relative colors for both the table background 23 | and the color. It means the table can display well without this patch 24 | then. At that time, we need to remove the below CSS attributes. 25 | */ 26 | div.datatables { 27 | color: #333; 28 | } 29 | -------------------------------------------------------------------------------- /content/find/parsnip/parsnip_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/find/parsnip/parsnip_thumbnail.png -------------------------------------------------------------------------------- /content/find/recipes/index.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | subtitle: Recipes 3 | title: Search recipe steps 4 | weight: 3 5 | description: | 6 | Find recipe steps in the tidymodels framework to help you prep your data for modeling. 7 | --- 8 | 9 | ```{r ex_setup, include=FALSE} 10 | knitr::opts_chunk$set( 11 | message = FALSE, 12 | digits = 3, 13 | collapse = TRUE, 14 | comment = "#>" 15 | ) 16 | options(digits = 3) 17 | script <- here::here("static/code/get_pkgdown_urls.R") 18 | source(script) 19 | library(DT) 20 | library(tibble) 21 | pkgs <- 22 | tibble(pkg = c("recipes", "embed", "textrecipes", "themis")) %>% 23 | mutate(base_url = glue::glue("https://{pkg}.tidymodels.org/")) %>% 24 | dplyr::bind_rows( 25 | tibble( 26 | pkg = "timetk", 27 | base_url = "https://business-science.github.io/timetk/" 28 | ) 29 | ) 30 | # MachineShop has step functions but pkgdown reference pages 31 | # redirect to https://www.rdocumentation.org/ 32 | # dplyr::bind_rows( 33 | # tibble( 34 | # pkg = "MachineShop", 35 | # base_url = "https://brian-j-smith.github.io/" 36 | # ) 37 | # ) 38 | # healthcareai has a number of step functions but they are not documented 39 | # on their pkgdown site 40 | # dplyr::bind_rows( 41 | # tibble( 42 | # pkg = "healthcareai", 43 | # base_url = "https://docs.healthcare.ai/" 44 | # ) 45 | # ) 46 | # customsteps package has no pkgdown site 47 | ``` 48 | 49 | To learn about the recipes package, see [*Get Started: Preprocess your data with recipes*](/start/recipes/). The table below allows you to search for recipe steps across tidymodels packages. 50 | 51 | ```{r table-compute, include = FALSE} 52 | pkg_urls <- get_pkgdown_urls(pkgs, fltr = "(^check_)|(^step_)") %>% 53 | select(title, topic, package) %>% 54 | mutate(package = as.factor(package)) 55 | ``` 56 | 57 | ```{r table-display, echo = FALSE, results = "asis"} 58 | DT::datatable( 59 | pkg_urls, 60 | rownames = FALSE, 61 | class = 'cell-border stripe', 62 | escape = FALSE, 63 | filter = "top", 64 | options = list(pageLength = 5) 65 | ) 66 | ``` 67 | -------------------------------------------------------------------------------- /content/find/recipes/index_files/crosstalk/css/crosstalk.min.css: -------------------------------------------------------------------------------- 1 | .container-fluid.crosstalk-bscols{margin-left:-30px;margin-right:-30px;white-space:normal}body>.container-fluid.crosstalk-bscols{margin-left:auto;margin-right:auto}.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column{display:inline-block;padding-right:12px;vertical-align:top}@media only screen and (max-width: 480px){.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column{display:block;padding-right:inherit}}.crosstalk-input{margin-bottom:15px}.crosstalk-input .control-label{margin-bottom:0;vertical-align:middle}.crosstalk-input input[type="checkbox"]{margin:4px 0 0;margin-top:1px;line-height:normal}.crosstalk-input .checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.crosstalk-input .checkbox>label{padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.crosstalk-input .checkbox input[type="checkbox"],.crosstalk-input .checkbox-inline input[type="checkbox"]{position:absolute;margin-top:2px;margin-left:-20px}.crosstalk-input .checkbox+.checkbox{margin-top:-5px}.crosstalk-input .checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.crosstalk-input .checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px} 2 | -------------------------------------------------------------------------------- /content/find/recipes/index_files/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 | 9 | 10 | /* 11 | Fix https://github.com/rstudio/DT/issues/563 12 | If the `table.display` is set to "block" (e.g., pkgdown), the browser will display 13 | datatable objects strangely. The search panel and the page buttons will still be 14 | in full-width but the table body will be "compact" and shorter. 15 | In therory, having this attributes will affect `dom="t"` 16 | with `display: block` users. But in reality, there should be no one. 17 | We may remove the below lines in the future if the upstream agree to have this there. 18 | See https://github.com/DataTables/DataTablesSrc/issues/160 19 | */ 20 | 21 | table.dataTable { 22 | display: table; 23 | } 24 | -------------------------------------------------------------------------------- /content/find/recipes/index_files/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 | 10 | /* The datatables' theme CSS file doesn't define 11 | the color but with white background. It leads to an issue that 12 | when the HTML's body color is set to 'white', the user can't 13 | see the text since the background is white. One case happens in the 14 | RStudio's IDE when inline viewing the DT table inside an Rmd file, 15 | if the IDE theme is set to "Cobalt". 16 | 17 | See https://github.com/rstudio/DT/issues/447 for more info 18 | 19 | This fixes should have little side-effects because all the other elements 20 | of the default theme use the #333 font color. 21 | 22 | TODO: The upstream may use relative colors for both the table background 23 | and the color. It means the table can display well without this patch 24 | then. At that time, we need to remove the below CSS attributes. 25 | */ 26 | div.datatables { 27 | color: #333; 28 | } 29 | -------------------------------------------------------------------------------- /content/find/recipes/recipes_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/find/recipes/recipes_thumbnail.jpg -------------------------------------------------------------------------------- /content/home/band_one.md: -------------------------------------------------------------------------------- 1 | --- 2 | col0: 3 | row1: tidymodels 4 | row2: rsample 5 | row3: parsnip 6 | col2: 7 | row2: recipes 8 | row3: tune 9 | row4: yardstick 10 | title: tidymodels 11 | --- 12 | 13 | The tidymodels framework is a collection of packages for modeling and machine learning using [tidyverse](https://www.tidyverse.org/) principles. 14 | 15 | Install tidymodels with: 16 | 17 | ```{r, eval= FALSE} 18 | install.packages("tidymodels") 19 | ``` 20 | -------------------------------------------------------------------------------- /content/home/band_three.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Stay up to date 3 | --- 4 | 5 | Hear about the latest tidymodels news at the tidyverse blog. 6 | 7 | 8 | -------------------------------------------------------------------------------- /content/home/band_two.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Learn tidymodels 3 | --- 4 | 5 | Whether you are just starting out today or have years of experience with modeling, tidymodels offers a consistent, flexible framework for your work. 6 | 7 | -------------------------------------------------------------------------------- /content/learn/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Learn 3 | description: "Learn how to go farther with tidymodels in your modeling and machine learning projects." 4 | icon_attribution: "Icons made by [Becris](https://www.flaticon.com/authors/becris) from www.flaticon.com" 5 | --- 6 | 7 | After you know [what you need to get started](/start/) with tidymodels, you can learn more and go further. Find articles here to help you solve specific problems using the tidymodels framework. Articles are organized into four categories: 8 | -------------------------------------------------------------------------------- /content/learn/common.R: -------------------------------------------------------------------------------- 1 | knitr::opts_chunk$set( 2 | digits = 3, 3 | comment = "#>", 4 | dev = 'svglite', 5 | dev.args = list(bg = "transparent"), 6 | fig.path = "figs/", 7 | collapse = TRUE, 8 | cache.path = "cache/" 9 | ) 10 | options( 11 | width = 80, 12 | digits = 3, 13 | cli.width = 70, 14 | dplyr.summarise.inform = FALSE, 15 | pillar.min_title_chars = Inf 16 | ) 17 | 18 | 19 | req_pkgs <- function(x, what = "To use the code in this article,") { 20 | x <- sort(x) 21 | x <- knitr::combine_words(x, and = " and ") 22 | paste0( 23 | what, 24 | " you will need to install the following packages: ", 25 | x, "." 26 | ) 27 | } 28 | 29 | small_session <- function(pkgs = NULL) { 30 | pkgs <- c(pkgs, "recipes", "parsnip", "tune", "workflows", "dials", "dplyr", 31 | "broom", "ggplot2", "purrr", "rlang", "rsample", "tibble", "infer", 32 | "yardstick", "tidymodels", "infer", "dotwhisker") 33 | pkgs <- unique(pkgs) 34 | library(sessioninfo) 35 | library(dplyr) 36 | sinfo <- sessioninfo::session_info() 37 | cls <- class(sinfo$packages) 38 | sinfo$packages <- 39 | sinfo$packages %>% 40 | dplyr::filter(package %in% pkgs) 41 | class(sinfo$packages) <- cls 42 | sinfo 43 | } 44 | -------------------------------------------------------------------------------- /content/learn/develop/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Develop custom modeling tools 3 | weight: 4 4 | type: learn-subsection 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /content/learn/develop/broom/index_files/kePrint/kePrint.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | if (typeof $('[data-toggle="tooltip"]').tooltip === 'function') { 3 | $('[data-toggle="tooltip"]').tooltip(); 4 | } 5 | if ($('[data-toggle="popover"]').popover === 'function') { 6 | $('[data-toggle="popover"]').popover(); 7 | } 8 | }); 9 | -------------------------------------------------------------------------------- /content/learn/develop/recipes/index_files/figure-html/carbon_dist-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/learn/develop/recipes/index_files/figure-html/carbon_dist-1.png -------------------------------------------------------------------------------- /content/learn/develop/recipes/index_files/figure-html/cdf_plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/learn/develop/recipes/index_files/figure-html/cdf_plot-1.png -------------------------------------------------------------------------------- /content/learn/develop/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/learn/develop/thumbnail.png -------------------------------------------------------------------------------- /content/learn/models/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Create robust models 3 | weight: 2 4 | type: learn-subsection 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /content/learn/models/linear-regression.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/learn/models/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/learn/models/thumbnail.png -------------------------------------------------------------------------------- /content/learn/statistics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Perform statistical analysis 3 | weight: 1 4 | type: learn-subsection 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /content/learn/statistics/k-means/kmeans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/learn/statistics/k-means/kmeans.gif -------------------------------------------------------------------------------- /content/learn/statistics/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/learn/statistics/thumbnail.png -------------------------------------------------------------------------------- /content/learn/work/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tune, compare, and work with your models 3 | weight: 3 4 | type: learn-subsection 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /content/learn/work/data.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/learn/work/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/learn/work/thumbnail.png -------------------------------------------------------------------------------- /content/start/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Get Started 3 | subtitle: Welcome! 4 | description: "What do you need to know to start using tidymodels? Learn what you need in 5 articles." 5 | --- 6 | 7 | Here, learn what you need to get started with tidymodels in five articles, starting with how to create a model and ending with a beginning-to-end modeling case study. After you are comfortable with these basics, you can [learn how to go farther with tidymodels](/learn/). 8 | 9 | ## If you are new to R or the tidyverse 10 | 11 | To get the most out of tidymodels, we recommend that you start by learning some basics about R and the [tidyverse](https://www.tidyverse.org/) first, then return here when you feel ready. Here are some resources to start learning: 12 | 13 | * [Finding Your Way To R](https://education.rstudio.com/learn/), from the RStudio Education team. 14 | 15 | * [Learn the tidyverse](https://www.tidyverse.org/learn/), from the tidyverse team. 16 | 17 | * [Statistical Inference via Data Science: A ModernDive into R and the Tidyverse](/books/moderndive/). 18 | 19 | -------------------------------------------------------------------------------- /content/start/case-study/img/hotel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/start/case-study/img/hotel.jpg -------------------------------------------------------------------------------- /content/start/case-study/index_files/header-attrs-2.1/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /content/start/common.R: -------------------------------------------------------------------------------- 1 | knitr::opts_chunk$set( 2 | digits = 3, 3 | comment = "#>", 4 | dev = 'svglite', 5 | dev.args = list(bg = "transparent"), 6 | fig.path = "figs/", 7 | collapse = TRUE, 8 | cache.path = "cache/" 9 | ) 10 | options( 11 | width = 80, 12 | cli.width = 70, 13 | pillar.min_title_chars = Inf 14 | ) 15 | 16 | article_req_pkgs <- function(x, what = "To use code in this article, ") { 17 | x <- sort(x) 18 | x <- knitr::combine_words(x, and = " and ") 19 | paste0( 20 | what, 21 | " you will need to install the following packages: ", 22 | x, "." 23 | ) 24 | } 25 | small_session <- function(pkgs = NULL) { 26 | pkgs <- c(pkgs, "recipes", "parsnip", "tune", "workflows", "dials", "dplyr", 27 | "broom", "ggplot2", "purrr", "rlang", "rsample", "tibble", "infer", 28 | "yardstick", "tidymodels", "infer") 29 | pkgs <- unique(pkgs) 30 | library(sessioninfo) 31 | library(dplyr) 32 | sinfo <- sessioninfo::session_info() 33 | cls <- class(sinfo$packages) 34 | sinfo$packages <- 35 | sinfo$packages %>% 36 | dplyr::filter(package %in% pkgs) 37 | class(sinfo$packages) <- cls 38 | sinfo 39 | } 40 | -------------------------------------------------------------------------------- /content/start/models/urchins.csv: -------------------------------------------------------------------------------- 1 | TREAT,IV,SUTW 2 | Initial,3.5,0.01 3 | Initial,5,0.02 4 | Initial,8,0.061 5 | Initial,10,0.051 6 | Initial,13,0.041 7 | Initial,13,0.061 8 | Initial,15,0.041 9 | Initial,15,0.071 10 | Initial,16,0.092 11 | Initial,17,0.051 12 | Initial,19,0.051 13 | Initial,20,0.082 14 | Initial,21,0.102 15 | Initial,21,0.092 16 | Initial,24,0.051 17 | Initial,24,0.061 18 | Initial,24,0.082 19 | Initial,28,0.071 20 | Initial,29,0.071 21 | Initial,35,0.082 22 | Initial,36,0.061 23 | Initial,39,0.082 24 | Initial,39,0.112 25 | Initial,44,0.102 26 | Low,5,0.041 27 | Low,8,0.031 28 | Low,8.5,0.041 29 | Low,11.5,0.082 30 | Low,10,0.071 31 | Low,14,0.051 32 | Low,15,0.061 33 | Low,15.5,0.082 34 | Low,18,0.061 35 | Low,18,0.061 36 | Low,18,0.071 37 | Low,22,0.041 38 | Low,21.5,0.061 39 | Low,20.5,0.061 40 | Low,25,0.082 41 | Low,26,0.061 42 | Low,38,0.071 43 | Low,41,0.082 44 | Low,41,0.061 45 | Low,43,0.061 46 | Low,45,0.071 47 | High,7.5,0.051 48 | High,9.5,0.051 49 | High,9,0.082 50 | High,9,0.092 51 | High,12,0.092 52 | High,13,0.061 53 | High,14.5,0.051 54 | High,15,0.102 55 | High,13,0.112 56 | High,11.5,0.071 57 | High,14,0.071 58 | High,14,0.051 59 | High,15.5,0.082 60 | High,15,0.092 61 | High,17.5,0.102 62 | High,19,0.122 63 | High,19,0.102 64 | High,19.5,0.163 65 | High,20,0.051 66 | High,23.5,0.112 67 | High,30,0.153 68 | High,26,0.082 69 | High,29,0.122 70 | High,39,0.102 71 | Low,47.5,0.041 72 | Low,46.5,0.061 73 | Low,11.5,0.031 74 | -------------------------------------------------------------------------------- /content/start/recipes/index_files/kePrint/kePrint.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | if (typeof $('[data-toggle="tooltip"]').tooltip === 'function') { 3 | $('[data-toggle="tooltip"]').tooltip(); 4 | } 5 | if ($('[data-toggle="popover"]').popover === 'function') { 6 | $('[data-toggle="popover"]').popover(); 7 | } 8 | }); 9 | -------------------------------------------------------------------------------- /content/start/resampling/img/cells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/content/start/resampling/img/cells.png -------------------------------------------------------------------------------- /content/start/resampling/index_files/kePrint/kePrint.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | if (typeof $('[data-toggle="tooltip"]').tooltip === 'function') { 3 | $('[data-toggle="tooltip"]').tooltip(); 4 | } 5 | if ($('[data-toggle="popover"]').popover === 'function') { 6 | $('[data-toggle="popover"]').popover(); 7 | } 8 | }); 9 | -------------------------------------------------------------------------------- /data/homepage.yaml: -------------------------------------------------------------------------------- 1 | bandtwo: 2 | - url: /start/ 3 | title: Get Started 4 | icon: fa-flag-checkered 5 | icon_pack: fas 6 | what: | 7 | What do you need to know to start using tidymodels? Learn what you need in 5 articles, starting with how to create a model and ending with a beginning-to-end modeling case study. 8 | 9 | - url: /learn/ 10 | title: Learn 11 | icon: fa-lightbulb 12 | icon_pack: far 13 | what: | 14 | After you are comfortable with the basics, you can learn how to go farther with tidymodels in your modeling and machine learning projects. 15 | -------------------------------------------------------------------------------- /data/resources.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - url: /find/ 3 | title: Find 4 | icon: fa-search 5 | icon_pack: fas 6 | what: | 7 | Explore searchable tables of all tidymodels packages and functions. 8 | 9 | - url: /books/ 10 | title: Books 11 | icon: fa-book-open 12 | icon_pack: fas 13 | what: | 14 | Study up on statistics and modeling with our comprehensive books. 15 | 16 | - url: https://www.tidyverse.org/tags/tidymodels/ 17 | title: News 18 | icon: fa-bullhorn 19 | icon_pack: fas 20 | what: | 21 | Hear the latest about tidymodels packages at the [tidyverse blog](https://www.tidyverse.org/tags/tidymodels/). 22 | -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | site: blogdown:::blogdown_site 3 | --- 4 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 |
4 |
5 |
6 |
7 | 8 |

{{ .Title | markdownify }}

9 | 10 |
11 | {{ .Content }} 12 |
13 | 14 |
15 | 16 |
17 | {{ if ge (len .TableOfContents) 50 }} 18 |
19 |
Contents
20 | {{ .TableOfContents }} 21 |
22 | {{ end }} 23 |
24 |
Resources
25 | {{ partial "resources_sticky.html" .}} 26 |
27 |
28 | 29 |
30 |
31 |
32 | 33 | {{ end }} 34 | -------------------------------------------------------------------------------- /layouts/find/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 |
4 |
5 |
6 |
7 | 8 |

{{ .Title | markdownify }}

9 | 10 |
11 | {{ .Content }} 12 |
13 | 14 |
15 | 16 |
17 |
18 |
Explore tidymodels
19 | {{ partial "find-sidebar.html" .}} 20 |
21 |
22 |
Resources
23 | {{ partial "resources_sticky.html" .}} 24 |
25 |
26 | 27 |
28 |
29 |
30 | 31 | {{ end }} 32 | -------------------------------------------------------------------------------- /layouts/partials/find-sidebar.html: -------------------------------------------------------------------------------- 1 |
2 | {{ $page := . }} 3 | {{ range (where .Site.RegularPages.ByWeight "Section" "find" ) }} 4 |
10 | 11 | -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 11 |
12 | {{ with .Param "footer.github_url"}} 13 | 14 | {{ end }} 15 | {{ with .Param "footer.twitter_url"}} 16 | 17 | {{ end }} 18 |
19 | 20 | 27 | 28 |
29 |
30 | 31 | 32 | 33 | 34 | {{ partial "footer_highlightjs" . }} 35 | {{ partial "footer_mathjax" . }} 36 | {{ template "_internal/google_analytics.html" . }} 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /layouts/partials/hanchor.html: -------------------------------------------------------------------------------- 1 | {{ . | replaceRE "()" "${1} 🔗︎ ${3}" | safeHTML }} 2 | -------------------------------------------------------------------------------- /layouts/partials/head_custom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /layouts/partials/help.html: -------------------------------------------------------------------------------- 1 |
Stuck? Confused? Ask for help.
2 | -------------------------------------------------------------------------------- /layouts/partials/homepage_sticky.html: -------------------------------------------------------------------------------- 1 | {{ range $i, $element := $.Site.Data.homepage.bandtwo }} 2 | 3 | {{ $pack := .icon_pack }} 4 | {{ $icon := .icon }} 5 | 6 |
7 | 8 |
{{ .what | markdownify }}
9 |
10 | 11 | {{ end }} 12 | -------------------------------------------------------------------------------- /layouts/partials/learn-sidebar.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Filter by package
4 | {{ range $key, $value := $.Site.Taxonomies.tags }} 5 | 8 | {{ end }} 9 |
10 |
11 | -------------------------------------------------------------------------------- /layouts/partials/resources_sticky.html: -------------------------------------------------------------------------------- 1 | {{ range $i, $element := $.Site.Data.resources.resources }} 2 | 3 | {{ $pack := .icon_pack }} 4 | {{ $icon := .icon }} 5 | 6 |
7 | 8 | 11 |
{{ .what | markdownify }}
12 |
13 | 14 | {{ end }} 15 | -------------------------------------------------------------------------------- /layouts/partials/start-sidebar.html: -------------------------------------------------------------------------------- 1 | {{ $page := . }} 2 |
3 |
4 |
5 |
6 | {{ with .Site.GetPage "section" "start" }} 7 | 8 | {{ .Title }} 9 | {{ end }} 10 | 11 |
12 |
13 | {{ range (where .Site.RegularPages.ByWeight "Section" "start" ) }} 14 |
15 |
{{ .Weight }}  {{ .Title }} 16 |
17 |
18 | {{ end }} 19 |
20 | 21 | 22 | {{ if .IsPage }} 23 | {{ partial "help.html" . }} 24 | {{ end }} 25 | 26 |
27 | -------------------------------------------------------------------------------- /layouts/partials/topics-sidebar.html: -------------------------------------------------------------------------------- 1 |
2 |
Explore topics 3 |
4 | {{ range $index, $element := .FirstSection.Sections }} 5 | 10 | {{ end }} 11 |
12 | 13 | -------------------------------------------------------------------------------- /layouts/shortcodes/blogdown/postref.html: -------------------------------------------------------------------------------- 1 | {{ if eq (getenv "HUGO_BLOGDOWN_POST_RELREF") "true" }}{{ .Page.RelPermalink }}{{ else }}{{ .Page.Permalink }}{{ end }} -------------------------------------------------------------------------------- /layouts/shortcodes/note.html: -------------------------------------------------------------------------------- 1 |
{{ .Inner | markdownify }}
2 | -------------------------------------------------------------------------------- /layouts/shortcodes/rstudio-tip.html: -------------------------------------------------------------------------------- 1 |
{{ .Inner | markdownify }}
2 | -------------------------------------------------------------------------------- /layouts/shortcodes/test-drive.html: -------------------------------------------------------------------------------- 1 |

Alternatively, open an interactive version of this article in your browser:

2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /layouts/shortcodes/warning.html: -------------------------------------------------------------------------------- 1 |
{{ .Inner | markdownify }}
2 | -------------------------------------------------------------------------------- /layouts/start/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | 4 |
5 |
6 |
7 | 8 | {{ partial "start-sidebar.html" . }} 9 | 10 |
11 |
{{ .Params.subtitle }}
12 |
13 | {{ .Content }} 14 |
15 |
16 |
17 |
18 |
19 | {{ end }} 20 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | publish = "public" 3 | command = "hugo" 4 | 5 | [context.production.environment] 6 | HUGO_VERSION = "0.96.0" 7 | HUGO_ENV = "production" 8 | HUGO_ENABLEGITINFO = "true" 9 | 10 | [context.branch-deploy.environment] 11 | HUGO_VERSION = "0.96.0" 12 | 13 | [context.deploy-preview.environment] 14 | HUGO_VERSION = "0.96.0" 15 | 16 | [context.deploy-preview] 17 | command = "hugo -b $DEPLOY_PRIME_URL --buildFuture" 18 | 19 | [context.branch-deploy] 20 | command = "hugo -b $DEPLOY_PRIME_URL --buildFuture" 21 | 22 | -------------------------------------------------------------------------------- /resources/_gen/images/books/fes/cover_hu3326d100d263260914699e43b6fa4551_11841_150x150_fill_q75_box_smart1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/fes/cover_hu3326d100d263260914699e43b6fa4551_11841_150x150_fill_q75_box_smart1.jpg -------------------------------------------------------------------------------- /resources/_gen/images/books/fes/cover_hu3326d100d263260914699e43b6fa4551_11841_150x150_fit_q75_box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/fes/cover_hu3326d100d263260914699e43b6fa4551_11841_150x150_fit_q75_box.jpg -------------------------------------------------------------------------------- /resources/_gen/images/books/fes/cover_hu3326d100d263260914699e43b6fa4551_11841_300x300_fill_q75_box_smart1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/fes/cover_hu3326d100d263260914699e43b6fa4551_11841_300x300_fill_q75_box_smart1.jpg -------------------------------------------------------------------------------- /resources/_gen/images/books/fes/cover_hu3326d100d263260914699e43b6fa4551_11841_300x300_fill_q75_box_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/fes/cover_hu3326d100d263260914699e43b6fa4551_11841_300x300_fill_q75_box_top.jpg -------------------------------------------------------------------------------- /resources/_gen/images/books/fes/cover_hu3326d100d263260914699e43b6fa4551_11841_500x500_fill_q75_box_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/fes/cover_hu3326d100d263260914699e43b6fa4551_11841_500x500_fill_q75_box_center.jpg -------------------------------------------------------------------------------- /resources/_gen/images/books/fes/cover_hu3326d100d263260914699e43b6fa4551_11841_500x500_fill_q75_box_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/fes/cover_hu3326d100d263260914699e43b6fa4551_11841_500x500_fill_q75_box_top.jpg -------------------------------------------------------------------------------- /resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_150x150_fill_box_smart1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_150x150_fill_box_smart1_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_150x150_fit_box_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_150x150_fit_box_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_300x300_fill_box_smart1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_300x300_fill_box_smart1_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_300x300_fill_box_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_300x300_fill_box_top_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_500x500_fill_box_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_500x500_fill_box_center_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_500x500_fill_box_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_500x500_fill_box_top_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_500x500_fill_box_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/moderndive/cover_hu18db51943d4fe6a133c464dc26b2dcd7_108553_500x500_fill_box_top_3.png -------------------------------------------------------------------------------- /resources/_gen/images/books/smltar/cover_hu78ba12b063b8f23aca2700d6525fd775_47957_500x500_fill_q75_box_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/smltar/cover_hu78ba12b063b8f23aca2700d6525fd775_47957_500x500_fill_q75_box_top.jpg -------------------------------------------------------------------------------- /resources/_gen/images/books/smltar/cover_hub976e5c6de164a699cbf934c19f6130b_8580_500x500_fill_box_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/smltar/cover_hub976e5c6de164a699cbf934c19f6130b_8580_500x500_fill_box_top_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/smltar/cover_hub976e5c6de164a699cbf934c19f6130b_8580_500x500_fill_box_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/smltar/cover_hub976e5c6de164a699cbf934c19f6130b_8580_500x500_fill_box_top_3.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_150x150_fill_box_smart1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_150x150_fill_box_smart1_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_150x150_fit_box_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_150x150_fit_box_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_300x300_fill_box_smart1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_300x300_fill_box_smart1_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_300x300_fill_box_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_300x300_fill_box_top_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_500x500_fill_box_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_500x500_fill_box_center_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_500x500_fill_box_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_500x500_fill_box_top_2.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_500x500_fill_box_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tidytext/cover_huddc6c3235d904191d21f4e5f7e097c21_88341_500x500_fill_box_top_3.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tmwr/cover_hu0f2672b9420a6b581c38962b08745838_178729_500x500_fill_box_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tmwr/cover_hu0f2672b9420a6b581c38962b08745838_178729_500x500_fill_box_top_3.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tmwr/cover_hu1be595f2b9a42191080f50a90ae1e59c_116699_500x500_fill_q75_box_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tmwr/cover_hu1be595f2b9a42191080f50a90ae1e59c_116699_500x500_fill_q75_box_top.jpg -------------------------------------------------------------------------------- /resources/_gen/images/books/tmwr/cover_hu1f9c069fa4003c768d62d7d9f59935c1_2351_500x500_fill_box_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tmwr/cover_hu1f9c069fa4003c768d62d7d9f59935c1_2351_500x500_fill_box_top_3.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tmwr/cover_hu23e99dedaa40f2273e8f7ee8a663c02f_246939_500x500_fill_box_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tmwr/cover_hu23e99dedaa40f2273e8f7ee8a663c02f_246939_500x500_fill_box_top_3.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tmwr/cover_hu3850665c946d86f10f9de3689b9095ad_32768_500x500_fill_box_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tmwr/cover_hu3850665c946d86f10f9de3689b9095ad_32768_500x500_fill_box_top_3.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tmwr/cover_hu3850665c946d86f10f9de3689b9095ad_606844_500x500_fill_box_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tmwr/cover_hu3850665c946d86f10f9de3689b9095ad_606844_500x500_fill_box_top_3.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tmwr/cover_hu3b2a1b3dbb7e8e261d9cf8b1596f63f0_2343156_500x500_fill_box_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tmwr/cover_hu3b2a1b3dbb7e8e261d9cf8b1596f63f0_2343156_500x500_fill_box_top_3.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tmwr/cover_hu4887ab403897df9972c1c51f39593b50_122242_500x500_fill_box_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tmwr/cover_hu4887ab403897df9972c1c51f39593b50_122242_500x500_fill_box_top_3.png -------------------------------------------------------------------------------- /resources/_gen/images/books/tmwr/cover_hub21bd02bbe2eabcd4b78cc19ae857e8e_40822_500x500_fill_box_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/resources/_gen/images/books/tmwr/cover_hub21bd02bbe2eabcd4b78cc19ae857e8e_40822_500x500_fill_box_top_3.png -------------------------------------------------------------------------------- /static/_redirects: -------------------------------------------------------------------------------- 1 | http://www.tidymodels.org/* https://www.tidymodels.org/:splat 301! 2 | http://tidymodels.org/* https://www.tidymodels.org/:splat 301! 3 | https://tidymodels.org/* https://www.tidymodels.org/:splat 301! 4 | -------------------------------------------------------------------------------- /static/code/curves_card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/code/curves_card.jpg -------------------------------------------------------------------------------- /static/code/installs.R: -------------------------------------------------------------------------------- 1 | install.packages("remotes", repos = "https://cran.rstudio.com") 2 | 3 | pkg_list <- read.dcf("DESCRIPTION")[,"Imports"] 4 | pkg_list <- gsub("\n", "", pkg_list, fixed = TRUE) 5 | pkg_list <- strsplit(pkg_list, ",")[[1]] 6 | 7 | remotes::install_cran( 8 | pkg_list, 9 | repos = "https://cran.rstudio.com", 10 | upgrade = "alwyas", 11 | type = "source", 12 | force = TRUE 13 | ) 14 | 15 | library(remotes) 16 | 17 | install_github("rstudio/DT") 18 | 19 | library(keras) 20 | 21 | install_keras(method = "virtualenv") 22 | 23 | -------------------------------------------------------------------------------- /static/code/req_pkgs.R: -------------------------------------------------------------------------------- 1 | req_pkgs <- function(x, what = "This article") { 2 | x <- sort(x) 3 | x <- paste0("`", x, "`") 4 | x <- knitr::combine_words(x, and = " and ") 5 | paste0( 6 | what, 7 | " requires that you have the following packages installed: ", 8 | x, "." 9 | ) 10 | } 11 | -------------------------------------------------------------------------------- /static/css/images/menuToggler.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/css/images/tidy-back-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | tidy-back 10 | 12 | 14 | 16 | 18 | 20 | 21 | 23 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /static/css/images/tidy-back-01a.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | tidy-back 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /static/css/images/tidy-back-03a.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 24 | 25 | tidy-back 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /static/css/images/tidy-event-back-conf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 22 | 23 | 24 | 25 | 27 | 28 | 29 | 30 | 31 | 33 | 34 | 35 | 36 | 37 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /static/css/images/tidy-event-back-meetup.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 21 | 22 | 23 | 24 | 25 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /static/css/images/tidy-packages-back-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | tidy-packages-back 10 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /static/css/images/tidy-packages-back-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | tidy-packages-back 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /static/css/images/tidy-packages-back-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | tidy-packages-back 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-300.eot -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-300.ttf -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-300.woff -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-300.woff2 -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-700.eot -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-700.ttf -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-700.woff -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-700.woff2 -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-italic.eot -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-italic.ttf -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-italic.woff -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-italic.woff2 -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-regular.eot -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-regular.ttf -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-regular.woff -------------------------------------------------------------------------------- /static/fonts/lato-v16-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/fonts/lato-v16-latin-regular.woff2 -------------------------------------------------------------------------------- /static/images/broom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/broom.png -------------------------------------------------------------------------------- /static/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/cover.png -------------------------------------------------------------------------------- /static/images/dials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/dials.png -------------------------------------------------------------------------------- /static/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/error.png -------------------------------------------------------------------------------- /static/images/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/images/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/images/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /static/images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /static/images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /static/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/favicons/favicon.ico -------------------------------------------------------------------------------- /static/images/favicons/site.webmanifest: -------------------------------------------------------------------------------- 1 | {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} -------------------------------------------------------------------------------- /static/images/feature_summary_large_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/feature_summary_large_image.jpg -------------------------------------------------------------------------------- /static/images/giraffe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/giraffe.jpg -------------------------------------------------------------------------------- /static/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/help.png -------------------------------------------------------------------------------- /static/images/parsnip-flagger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/parsnip-flagger.jpg -------------------------------------------------------------------------------- /static/images/parsnip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/parsnip.png -------------------------------------------------------------------------------- /static/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/placeholder.png -------------------------------------------------------------------------------- /static/images/recipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/recipes.png -------------------------------------------------------------------------------- /static/images/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/robot.png -------------------------------------------------------------------------------- /static/images/rsample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/rsample.png -------------------------------------------------------------------------------- /static/images/rstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/rstudio.png -------------------------------------------------------------------------------- /static/images/tidymodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/tidymodels.png -------------------------------------------------------------------------------- /static/images/tune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/tune.png -------------------------------------------------------------------------------- /static/images/workflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/workflows.png -------------------------------------------------------------------------------- /static/images/yardstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/static/images/yardstick.png -------------------------------------------------------------------------------- /static/js/tm.js: -------------------------------------------------------------------------------- 1 | /* Clipboard --------------------------*/ 2 | /* This copy-paste button (with tooltips) requires ClipboardJS, JQuery, & Bootstrap JS, linked in head_includes.html */ 3 | 4 | $(document).ready(function() { 5 | 6 | function changeTooltipMessage(element, msg) { 7 | var tooltipOriginalTitle=element.getAttribute('data-original-title'); 8 | element.setAttribute('data-original-title', msg); 9 | $(element).tooltip('show'); 10 | element.setAttribute('data-original-title', tooltipOriginalTitle); 11 | } 12 | 13 | if(ClipboardJS.isSupported()) { 14 | $(document).ready(function() { 15 | var copyButton = ""; 16 | 17 | $(".highlight > pre").addClass("hasCopyButton"); 18 | 19 | // Insert copy buttons: 20 | $(copyButton).prependTo(".hasCopyButton"); 21 | 22 | // Initialize tooltips: 23 | $('.btn-copy-ex').tooltip({container: 'body'}); 24 | 25 | // Initialize clipboard: 26 | var clipboardBtnCopies = new ClipboardJS('[data-clipboard-copy]', { 27 | text: function(trigger) { 28 | return trigger.parentNode.textContent; 29 | } 30 | }); 31 | 32 | clipboardBtnCopies.on('success', function(e) { 33 | changeTooltipMessage(e.trigger, 'Copied!'); 34 | e.clearSelection(); 35 | }); 36 | 37 | clipboardBtnCopies.on('error', function() { 38 | changeTooltipMessage(e.trigger,'Press Ctrl+C or Command+C to copy'); 39 | }); 40 | }); 41 | } 42 | }) 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /static/rmarkdown-libs/crosstalk/css/crosstalk.css: -------------------------------------------------------------------------------- 1 | /* Adjust margins outwards, so column contents line up with the edges of the 2 | parent of container-fluid. */ 3 | .container-fluid.crosstalk-bscols { 4 | margin-left: -30px; 5 | margin-right: -30px; 6 | white-space: normal; 7 | } 8 | 9 | /* But don't adjust the margins outwards if we're directly under the body, 10 | i.e. we were the top-level of something at the console. */ 11 | body > .container-fluid.crosstalk-bscols { 12 | margin-left: auto; 13 | margin-right: auto; 14 | } 15 | 16 | .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column { 17 | display: inline-block; 18 | padding-right: 12px; 19 | vertical-align: top; 20 | } 21 | 22 | @media only screen and (max-width:480px) { 23 | .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column { 24 | display: block; 25 | padding-right: inherit; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /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 | 9 | 10 | /* 11 | Fix https://github.com/rstudio/DT/issues/563 12 | If the `table.display` is set to "block" (e.g., pkgdown), the browser will display 13 | datatable objects strangely. The search panel and the page buttons will still be 14 | in full-width but the table body will be "compact" and shorter. 15 | In therory, having this attributes will affect `dom="t"` 16 | with `display: block` users. But in reality, there should be no one. 17 | We may remove the below lines in the future if the upstream agree to have this there. 18 | See https://github.com/DataTables/DataTablesSrc/issues/160 19 | */ 20 | 21 | table.dataTable { 22 | display: table; 23 | } 24 | -------------------------------------------------------------------------------- /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 | 10 | /* The datatables' theme CSS file doesn't define 11 | the color but with white background. It leads to an issue that 12 | when the HTML's body color is set to 'white', the user can't 13 | see the text since the background is white. One case happens in the 14 | RStudio's IDE when inline viewing the DT table inside an Rmd file, 15 | if the IDE theme is set to "Cobalt". 16 | 17 | See https://github.com/rstudio/DT/issues/447 for more info 18 | 19 | This fixes should have little side-effects because all the other elements 20 | of the default theme use the #333 font color. 21 | 22 | TODO: The upstream may use relative colors for both the table background 23 | and the color. It means the table can display well without this patch 24 | then. At that time, we need to remove the below CSS attributes. 25 | */ 26 | div.datatables { 27 | color: #333; 28 | } 29 | -------------------------------------------------------------------------------- /static/rmarkdown-libs/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /static/rmarkdown-libs/jquery/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2005, 2014 jQuery Foundation and other contributors, 2 | https://jquery.org/ 3 | 4 | This software consists of voluntary contributions made by many 5 | individuals. For exact contribution history, see the revision history 6 | available at https://github.com/jquery/jquery 7 | 8 | The following license applies to all parts of this software except as 9 | documented below: 10 | 11 | ==== 12 | 13 | Permission is hereby granted, free of charge, to any person obtaining 14 | a copy of this software and associated documentation files (the 15 | "Software"), to deal in the Software without restriction, including 16 | without limitation the rights to use, copy, modify, merge, publish, 17 | distribute, sublicense, and/or sell copies of the Software, and to 18 | permit persons to whom the Software is furnished to do so, subject to 19 | the following conditions: 20 | 21 | The above copyright notice and this permission notice shall be 22 | included in all copies or substantial portions of the Software. 23 | 24 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 25 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 26 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 27 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 28 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 29 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 30 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 31 | 32 | ==== 33 | 34 | All files located in the node_modules and external directories are 35 | externally maintained libraries used by this software which have their 36 | own licenses; we recommend you read them, as their terms may differ from 37 | the terms above. 38 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | .Ruserdata 5 | .DS_Store 6 | exampleSite/public -------------------------------------------------------------------------------- /themes/hugo-tourmaline/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Jonathan Rutheiser, 2016 - 2017 Yihui Xie, 2017 - 2019 Hadley Wickham and Robby Shaver, 2019 Hadley Wickham, Robby Shaver, and Alison Hill 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/README.md: -------------------------------------------------------------------------------- 1 | [![Netlify Status](https://api.netlify.com/api/v1/badges/2f8f1ca8-27e3-4781-8493-aace97152622/deploy-status)](https://app.netlify.com/sites/tourmaline/deploys) [![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](http://www.repostatus.org/badges/latest/wip.svg)](http://www.repostatus.org/#wip) 2 | 3 | # hugo-tourmaline 4 | 5 | This is a Hugo theme, forked from the Hugo Lithium theme by Jonathan Rutheiser and Yihui Xie, with modifications by Hadley Wickham, Mara Averick, Robby Shaver, and the tidyverse team, plus changes to make it work better for RStudio teams like [`tidyverse.org`](https://www.tidyverse.org/) by Alison Hill. 6 | 7 | Why tourmaline? It is a colorful mineral made up of several elements, including lithium. This theme also has several elements, or content types, enabled: 8 | 9 | + **articles** (blog posts with a thumbnail image on the listing page and a banner image on the single page; all link with team member names or just plain text for guest contributors) 10 | + **authors** (team members who may contribute to articles; includes a team listing page plus individual bios that link to articles contributed to for each) 11 | + **events** (including upcoming event sticky reminders, and upcoming event calendar, and a past event archive organized by year; all link with team member names in attendance) 12 | 13 | This theme is a *work in progress*. This means that the theme will be changing frequently as we rapidly iterate and explore variations to meet our needs. You are generally best off waiting until the theme is more mature before you use it. We'll update this `README` and the repo status when ready. 14 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/archetypes/blog/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: false 5 | 6 | # Authors. Comma separated list, e.g. `["Bob Smith", "David Jones"]`. 7 | authors: ["Hadley Wickham", "Mara Averick"] 8 | 9 | # Tags and categories 10 | # For example, use `tags = []` for no tags, or the form `tags = ["A Tag", "Another Tag"]` for one or more tags. 11 | tags: [] 12 | categories: [] 13 | 14 | # For wide photo caption 15 | photo: 16 | url: https://unsplash.com/photos/wEL2zPX3jDg 17 | author: Fabio Ballasina 18 | --- 19 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/archetypes/event-archive/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Past Events 3 | type: event-archive 4 | --- 5 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/archetypes/events/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title = "Example Event" 3 | 4 | # Event start and end times. 5 | # End time can optionally be hidden by prefixing the line with `#`. 6 | date = 2030-06-01T13:00:00 7 | date_end = 2030-06-01T15:00:00 8 | 9 | # Schedule page publish date (NOT talk date). 10 | publishDate = 2017-01-01T00:00:00 11 | 12 | # Announce event on "blog"? 13 | announce = true 14 | 15 | # Educators. Comma separated list, e.g. `["Bob Smith", "David Jones"]`. 16 | educators = [] 17 | 18 | # Location of event. 19 | location = "London, United Kingdom" 20 | 21 | # Name of event and optional event URL. 22 | event = "rstudio::conf" 23 | event_url = "https://www.rstudio.com/conference/" 24 | 25 | description: > 26 | The conference for all things R and RStudio. 27 | 28 | # For wide photo caption 29 | photo: 30 | url: https://unsplash.com/photos/wEL2zPX3jDg 31 | author: Fabio Ballasina 32 | --- 33 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/config.toml: -------------------------------------------------------------------------------- 1 | # Title of your site 2 | title = "Education" 3 | 4 | # The URL of your site. 5 | # End your URL with a `/` trailing slash, e.g. `https://example.com/`. 6 | baseurl = "/" 7 | 8 | # Name the theme folder in `themes/`. 9 | theme = "hugo-tourmaline" 10 | 11 | # Enable analytics by entering your Google Analytics tracking ID 12 | googleAnalytics = "" 13 | 14 | relativeurls = false 15 | languageCode = "en-us" 16 | description = "An opinionated collection of R packages designed for data science." 17 | disqusShortname = "" 18 | ignoreFiles = ["\\.Rmd$", "_files$", "_cache$"] 19 | # below is critical for non-authors to show up in article listing 20 | preserveTaxonomyNames = true 21 | # uncomment the next line to disable listing authors 22 | # disableKinds = ["taxonomyTerm"] 23 | 24 | [permalinks] 25 | blog = "blog/:year/:month/:slug/" 26 | 27 | [taxonomies] 28 | author = "author" 29 | category = "categories" 30 | tag = "tags" 31 | 32 | # Configure BlackFriday Markdown rendering. 33 | # See: https://gohugo.io/getting-started/configuration/#configure-blackfriday 34 | [blackfriday] 35 | hrefTargetBlank = true # `true` opens external links in a new tab. See https://github.com/gohugoio/hugo/issues/2424 36 | angledQuotes = false 37 | latexDashes = true 38 | extensions = ["backslashLineBreak"] 39 | 40 | [markup] 41 | defaultMarkdownHandler = "goldmark" 42 | [markup.goldmark.renderer] 43 | unsafe = true 44 | [markup.highlight] 45 | style = "pygments" -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/config/_default/menus.toml: -------------------------------------------------------------------------------- 1 | # Navigation Bar Links 2 | # The weight parameter defines the order that the links will appear in. 3 | 4 | [[main]] 5 | name = "Packages" 6 | url = "/packages/" 7 | weight = 1 8 | [[main]] 9 | name = "News" 10 | url = "/news/" 11 | weight = 2 12 | [[main]] 13 | name = "Learn" 14 | url = "/learn/" 15 | weight = 3 16 | [[main]] 17 | name = "Help" 18 | url = "/help/" 19 | weight = 4 20 | [[main]] 21 | name = "Contribute" 22 | url = "/contribute/" 23 | weight = 5 24 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/author/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Meet the team 3 | --- 4 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/author/alison/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Alison Hill 3 | photo: 'https://github.com/apreshill.png' 4 | social: 5 | github: 'apreshill' 6 | twitter: "apreshill" 7 | website: "https://alison.rbind.io/" 8 | description: Data Scientist and Professional Educator 9 | team: true 10 | --- 11 | 12 | Bio goes here 13 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/author/carl/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Carl Howe 3 | photo: 'https://github.com/cdhowe.png' 4 | social: 5 | github: 'cdhowe' 6 | twitter: "cdhowe" 7 | website: "https://carlhowe.com" 8 | description: Director of Educaton 9 | team: true 10 | --- 11 | 12 | Bio goes here 13 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/author/garrett/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Garrett Grolemund 3 | photo: 'https://github.com/garrettgman.png' 4 | social: 5 | github: 'garrettgman' 6 | twitter: "StatGarrett" 7 | website: "" 8 | description: Data Scientist and Master Instructor 9 | team: true 10 | --- 11 | 12 | Bio goes here 13 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/author/greg/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Greg Wilson 3 | photo: 'http://third-bit.com/files/gvwilson-tpl-2017-small.jpg' 4 | social: 5 | github: 'gvwilson' 6 | twitter: "gvwilson" 7 | website: "http://third-bit.com/" 8 | description: Data Scientist and Professional Educator 9 | team: true 10 | --- 11 | 12 | Bio goes here 13 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/author/mine/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mine Çetinkaya-Rundel 3 | photo: 'https://github.com/mine-cetinkaya-rundel.png' 4 | social: 5 | github: 'mine-cetinkaya-rundel' 6 | twitter: "minebocek" 7 | website: "http://mine-cr.com/" 8 | description: Data Scientist and Professional Educator 9 | team: true 10 | --- 11 | 12 | likes :kissing_cat:, will :airplane: 13 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/blog/2019-02-haven-2-1-0/haven-2-1-0-sq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/exampleSite/content/blog/2019-02-haven-2-1-0/haven-2-1-0-sq.jpg -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/blog/2019-02-haven-2-1-0/haven-2-1-0-wd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/exampleSite/content/blog/2019-02-haven-2-1-0/haven-2-1-0-wd.jpg -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/blog/2019-02-purrr-0-3-0/purrr-0-3-0-sq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/exampleSite/content/blog/2019-02-purrr-0-3-0/purrr-0-3-0-sq.jpg -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/blog/2019-02-purrr-0-3-0/purrr-0-3-0-wd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/exampleSite/content/blog/2019-02-purrr-0-3-0/purrr-0-3-0-wd.jpg -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/blog/2019-02-stringr-1-4-0/stringr-1-4-0-sq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/exampleSite/content/blog/2019-02-stringr-1-4-0/stringr-1-4-0-sq.jpg -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/blog/2019-02-stringr-1-4-0/stringr-1-4-0-wd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/exampleSite/content/blog/2019-02-stringr-1-4-0/stringr-1-4-0-wd.jpg -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: News 3 | url: /news 4 | --- 5 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/events/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Upcoming Events 3 | --- 4 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/events/archive/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Past Events 3 | type: event-archive 4 | --- 5 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/events/icse-2019/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "ICSE 2019" 3 | date: "2019-05-28" 4 | date_end: "" 5 | publishDate: "2019-02-27" 6 | announce: true 7 | description: > 8 | One-day workshop for software engineering researchers attending ICSE conference. 9 | event_url: "https://www.rstudio.com/conference/" 10 | location: "Montréal, PQ, Canada" 11 | educators: 12 | - Greg 13 | --- 14 | 15 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/events/rstudio-conf-2020/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "rstudio::conf 2020" 3 | date: "2020-01-27" 4 | date_end: "2020-01-30" 5 | publishDate: "2019-02-27" 6 | announce: true 7 | description: > 8 | The conference for all things R and RStudio. 9 | event_url: "https://www.rstudio.com/conference/" 10 | location: "San Francisco, CA" 11 | educators: 12 | - Mine 13 | - Garrett 14 | - Greg 15 | - Carl 16 | - Alison 17 | photo: 18 | url: https://unsplash.com/photos/f9TWR57Uujo 19 | author: Pedro Lastra 20 | --- 21 | 22 | rstudio::conf 2020 covers all things RStudio, including workshops to teach you the tidyverse, and talks to show you the latest and greatest features. 23 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/events/rstudio-conf-2020/pedro-lastra-167351-unsplash-sq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/exampleSite/content/events/rstudio-conf-2020/pedro-lastra-167351-unsplash-sq.jpg -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/events/rstudio-conf-2020/pedro-lastra-167351-unsplash-wd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/exampleSite/content/events/rstudio-conf-2020/pedro-lastra-167351-unsplash-wd.jpg -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/events/tidy-tools-2019/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Building Tidy Tools" 3 | date: "2019-05-01" 4 | date_end: "2019-05-02" 5 | publishDate: "2019-02-27" 6 | announce: true 7 | description: > 8 | This workshop, taught by [Hadley Wickham](http://hadley.nz/), is for people who have experience programming in R and want to learn how to tackle larger scale problems. 9 | event_url: "https://www.rstudio.com/conference/" 10 | location: "Sydney, Australia" 11 | educators: 12 | - Hadley Wickham 13 | --- 14 | 15 | The class is taught by Hadley Wickham, Chief Scientist at RStudio. 16 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/help/help-is-on-the-way.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/exampleSite/content/help/help-is-on-the-way.jpg -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/help/reprex-addin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/exampleSite/content/help/reprex-addin.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/help/reprex-addins-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/exampleSite/content/help/reprex-addins-menu.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/home/band_one.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Education @ RStudio" 3 | col0: 4 | row1: "RStudio" 5 | row2: "" 6 | row3: "tidyverse" 7 | col2: 8 | row2: "shiny" 9 | row3: "" 10 | row4: "rmarkdown" 11 | --- 12 | 13 | Our mission is to equip everyone, regardless of means, to participate in a global economy that rewards data literacy. 14 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/home/band_three.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Need help?" 3 | --- 4 | 5 | First learn how to make a [reprex](/help/#reprex) then [share it](/help/#where-to-ask) with others. 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/exampleSite/content/home/band_two.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Learn the tidyverse" 3 | --- 4 | 5 | See how the tidyverse makes data science faster, easier and more fun with "R for Data Science". Read it [online](http://r4ds.had.co.nz/), buy [the book](http://amzn.to/2aHLAQ1) or try another [resource](/learn/) from the community. 6 | 7 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/_default/baseof.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ partial "header.html" . }} 5 | 6 | 7 | 8 | 9 | {{ block "main" . }} 10 | 11 | {{ end }} 12 | {{ partial "footer.html" . }} 13 | 14 | 15 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/_default/rss.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }} 4 | {{ .Permalink }} 5 | Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }} 6 | Hugo -- gohugo.io{{ with .Site.LanguageCode }} 7 | {{.}}{{end}}{{ with .Site.Author.email }} 8 | {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }} 9 | {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Copyright }} 10 | {{.}}{{end}}{{ if not .Date.IsZero }} 11 | {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }} 12 | {{ with .OutputFormats.Get "RSS" }} 13 | {{ printf "" .Permalink .MediaType | safeHTML }} 14 | {{ end }} 15 | {{ range .Site.RegularPages }} 16 | 17 | {{ .Title }} 18 | {{ .Permalink }} 19 | {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} 20 | {{ with .Site.Author.email }}{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}} 21 | {{ .Permalink }} 22 | {{ .Content | html }} 23 | 24 | {{ end }} 25 | 26 | 27 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/_default/section.rss.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }} 4 | {{ .Permalink }} 5 | Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }} 6 | Hugo -- gohugo.io{{ with .Site.LanguageCode }} 7 | {{.}}{{end}}{{ if not .Date.IsZero }} 8 | {{ .Date.Format "2017-03-03 14:15:59 -0600 CST" | safeHTML }}{{ end }} 9 | {{ with .OutputFormats.Get "RSS" }} 10 | {{ printf "" .Permalink .MediaType | safeHTML }} 11 | {{ end }} 12 | {{ range .Site.RegularPages }} 13 | 14 | {{ .Title }} 15 | {{ .Permalink }} 16 | {{ .Date.Format "03 Mar 17 14:15 -0700" | safeHTML }} 17 | {{ with .Site.Author.email }}{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}} 18 | {{ .Permalink }} 19 | {{ .Summary | html }} 20 | {{ .Content | html }} 21 | 22 | {{ end }} 23 | 24 | 25 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | {{ $page := . }} 4 | {{ $banner := ($page.Resources.ByType "image").GetMatch "*-wd*" }} 5 | 6 |
7 |
8 |
9 |
10 | 11 |

{{ .Title | markdownify }}

12 | 13 | {{ $slug := .Param "slug" }} 14 |
15 | {{ with $banner }}
{{ end }}
16 | {{ with $.Params.photo }}
Photo by {{ .author }}
17 |
18 | {{ end }} 19 | 20 | {{ if or (eq .Section "articles") (eq .Section "blog") }} 21 | 22 | {{ end }} 23 | 24 | {{ $show_authors := $.Site.Params.authors.show_single | default true }} 25 | {{ if and $show_authors (or (eq .Section "articles") (eq .Section "blog")) }} 26 |

27 | 28 | {{ partial "pretty_author_names" . }} 29 | {{ end }} 30 |

31 | 32 |
33 | {{ .Content }} 34 |
35 | 36 | 37 | {{ partial "disqus.html" .}} 38 | 39 |
40 | 41 |
42 |
43 |
Contents
44 | {{ .TableOfContents }} 45 |
46 |
47 | 48 | {{ partial "events_sticky" . }} 49 |
50 |
51 | 52 |
53 |
54 |
55 | 56 | {{ end }} 57 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/author/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | 4 | 5 |
6 |
7 |
8 |
9 |
10 | 11 |
12 |
13 | 14 |
15 |
16 |
{{ default .Description | markdownify }} 17 | {{ with .Params.social.twitter }}{{ end }} {{ with .Params.social.github }}{{ end }} {{ with .Params.social.website }}{{ end }} 18 |
19 |
20 |
21 |
22 |

{{ .Content | markdownify | emojify }}

23 | 24 | {{ $show_articles := $.Site.Params.authors.show_latest | default true }} 25 | {{ if $show_articles }} 26 | {{ $query := where .Pages ".IsNode" false }} 27 | {{ $count := len $query }} 28 | {{ if $count }} 29 |
30 |

{{ $.Site.Params.authors.label_latest | default "Latest" }}

31 |
    32 | {{ range $query }} 33 |
  • 34 | {{ .Title }} 35 |
  • 36 | {{ end }} 37 |
38 |
39 | {{ end }} 40 | {{ end }} 41 | 42 | 43 |
44 |
45 |
46 |
47 | 48 | {{ end }} 49 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/author/terms.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | 4 | 5 |
6 |
7 |
8 |
9 |

{{ .Title }}

10 | 11 |
{{ range .Pages }} 12 | {{ if .Params.team }} 13 |
14 | 15 |
16 |
17 | 18 |
19 | {{- range .Params.categories -}} 20 | {{ . }} 21 | {{ end -}} 22 |
23 |
24 |
25 |
{{ default .Description | markdownify }} 26 | {{ with .Params.social.twitter }}{{ end }} {{ with .Params.social.github }}{{ end }} {{ with .Params.social.website }}{{ end }} 27 | 28 | Read more about {{ with .Params.name }}{{ index (split . " ") 0 }}{{ end }}... 29 | 30 |
31 |
32 |
33 |
34 | {{ end }}{{ end }}
35 |
36 |
37 |
38 |
39 | 40 | 41 | {{ end }} 42 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/event-archive/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | {{ $taxo := "author" }} 4 | 5 |
6 |
7 |

{{ .Title }}

8 | {{ range (where $.Site.RegularPages "Section" "events").GroupByDate "2006" }} 9 | {{ if le .Key (now.Format "2006") }} 10 |

{{ .Key }}

11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | {{ range sort .Pages ".Date" }} 23 | {{ if lt (time .Date).Unix now.Unix }} 24 | 25 | 26 | 27 | 28 | 29 | 37 | 38 | {{ end }} 39 | {{ end }} 40 | 41 |
EventDate(s)DescriptionLocationTeam Member(s)
{{ .Title | markdownify }}{{ partial "pretty_date_ranges" . }}{{ with .Params.description }}{{ . | markdownify }}{{ end }}{{ with .Params.location }}{{ . | markdownify }}{{ end }}{{- range .Params.educators }} 30 | {{- with $.Site.GetPage "taxonomyTerm" (printf "%s/%s" $taxo (urlize .)) }} 31 | 32 | {{ with .Params.name }}{{ index (split . " ") 0 }}{{ end }} 33 | 34 | {{ end }} 35 | {{ end }} 36 |
42 |

43 | {{ end }} 44 | {{ end }} 45 | 46 |
47 |
48 | 49 | {{ end }} 50 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/events/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 |
4 |
5 |

{{ .Title | markdownify }}

6 | {{ partial "calendar.html" . }} 7 | {{ $show_archive := $.Site.Params.events.link_archive | default true }} 8 | {{ if $show_archive }} 9 | 10 | {{ end }} 11 |
12 |
13 | 14 | {{ end }} 15 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/calendar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | {{ $taxo := "author" }} 13 | {{ range sort (where $.Site.RegularPages "Section" "events") ".Date" }} 14 | {{ if ge (time .Date).Unix now.Unix }} 15 | 16 | 17 | 18 | 19 | 20 | 28 | 29 | {{ end }} 30 | {{ end }} 31 | 32 |
EventDate(s)DescriptionLocationTeam Member(s)
{{ .Title | markdownify }}{{ partial "pretty_date_ranges" . }}{{ with .Params.description }}{{ . | markdownify }}{{ end }}{{ with .Params.location }}{{ . | markdownify }}{{ end }}{{- range .Params.educators }} 21 | {{- with $.Site.GetPage "taxonomyTerm" (printf "%s/%s" $taxo (urlize .)) }} 22 | 23 | {{ with .Params.name }}{{ index (split . " ") 0 }}{{ end }} 24 | 25 | {{ end }} 26 | {{ end }} 27 |
33 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/disqus.html: -------------------------------------------------------------------------------- 1 | {{ if and (not (eq .Site.DisqusShortname "")) (not .Params.disable_comments) }} 2 |
3 |
4 | 23 | 24 |
25 | {{ end }} 26 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/events_sticky.html: -------------------------------------------------------------------------------- 1 | {{ $pages := first 2 (where (where (where $.Site.RegularPages "Section" "events") "Type" "!=" "event-archive") "Date" "ge" now).ByDate }} 2 | 3 | {{ if gt (len $pages) 0 }} 4 | 5 | {{ end }} 6 | 7 | {{ range $pages }} 8 | 9 |
10 | 11 |
{{ with .Params.location }}{{ . | markdownify }}{{ end }}
12 |
{{ partial "pretty_date_ranges" . }}
13 |
{{ with .Params.description }}{{ . | markdownify | truncate 200 }}{{ end }}
14 |
15 | 16 | {{ end }} 17 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/footer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 11 |
12 | 13 | 14 |
15 |
16 |
17 | 18 | 19 | 20 | 21 | {{ partial "footer_highlightjs" . }} 22 | {{ partial "footer_mathjax" . }} 23 | {{ template "_internal/google_analytics.html" . }} 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/footer_highlightjs.html: -------------------------------------------------------------------------------- 1 | {{ if or (not .Site.Params.disable_highlightjs) (ne .Site.Params.disable_highlightjs "true") }} 2 | {{ if and (not .Params.disable_highlight) (in (string .Content) "") }} 3 | {{ $highVer := .Site.Params.highlightjsVersion }} 4 | {{ $highCDN := (.Site.Params.highlightjsCDN | default "//cdn.bootcss.com") }} 5 | {{ if (not (eq $highVer "")) }} 6 | 7 | {{ $.Scratch.Set "highLangs" .Site.Params.highlightjsLang }} 8 | {{ range .Params.highlightjsLang }}{{ $.Scratch.Add "highLangs" . }}{{ end }} 9 | {{ range ($.Scratch.Get "highLangs") }} 10 | {{ end }} 11 | 12 | {{ end }} 13 | {{ end }} 14 | {{ end }} 15 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/footer_mathjax.html: -------------------------------------------------------------------------------- 1 | {{ if and (not .Params.disable_mathjax) (or (in (string .Content) "\\") (in (string .Content) "$")) }} 2 | 3 | 11 | 12 | {{ end }} 13 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/head_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/layouts/partials/head_custom.html -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/head_highlightjs.html: -------------------------------------------------------------------------------- 1 | {{ if or (not .Site.Params.disable_highlightjs) (ne .Site.Params.disable_highlightjs "true") }} 2 | {{ if and (not .Params.disable_highlight) (in (string .Content) "") }} 3 | {{ $highTheme := .Site.Params.highlightjsTheme }} 4 | {{ with .Site.Params.highlightjsVersion }} 5 | 6 | {{ end }} 7 | {{ end }} 8 | {{ end }} 9 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/head_includes.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | {{ range .Site.Params.custom_css }} 9 | 10 | {{ end }} 11 | 12 | 13 | {{ partial "meta.html" . }} 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | {{ if .IsHome -}} 30 | 31 | {{- end }} 32 | {{- partial "head_highlightjs" . -}} 33 | 34 | {{ range .Site.Params.custom_js }} 35 | 36 | {{ end }} 37 | 38 | 39 | {{- if eq .Section "blog" -}} 40 | 41 | {{- end }} 42 | 43 | {{ partial "head_custom" . }} 44 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/header.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{ partial "head_includes.html" . }} 6 | 7 | 8 |
9 |
10 | 11 |
12 |
13 |
14 |
15 | {{ if .Site.Params.logo.image }} 16 | 19 | {{- else -}} 20 | {{- .Site.Title -}} 21 | {{ end }} 22 |
23 | {{ partial "nav.html" . }} 24 |
25 |
26 |
-------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/meta.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{ $og_image := "" }} 6 | {{ $og_image = printf "images/%s" .Site.Params.sharing_image | absURL }} 7 | {{- with $og_image -}} 8 | 9 | {{- end -}} 10 | {{ hugo.Generator }} 11 | 12 | {{- if or .IsHome (not (eq .Section "blog")) -}} 13 | {{ .Site.Title }} 14 | 15 | 16 | 17 | 18 | {{ $twitter_card := "summary_large_image" }} 19 | 20 | {{ $twitter_image := "" }} 21 | {{ $twitter_image = printf "images/%s" .Site.Params.sharing_image | absURL }} 22 | {{- with $twitter_image -}} 23 | 24 | {{- end -}} 25 | 26 | {{- else -}} 27 | {{ .Title }}{{ with .Params.subtitle }} - {{ . }} {{ end }} - {{ .Site.Title }} 28 | 29 | 30 | 31 | {{ $thumbnail := (.Resources.ByType "image").GetMatch "*-sq*" }} 32 | {{ if $thumbnail }} 33 | 34 | {{ end }} 35 | 36 | 37 | 38 | {{- end }} 39 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/nav.html: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/pretty_author_names.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ $taxo := "author" }} 4 | {{ with .Param $taxo }} 5 | 6 | {{ if reflect.IsSlice . }} 7 | {{ range $index, $val := . }} 8 | {{- $profile_page := site.GetPage (printf "/%s/%s" $taxo (. | urlize)) -}} 9 | {{- $name := $profile_page.Params.name | default ($val | markdownify) -}} 10 | {{- if gt $index 0 }}, {{ end -}} 11 | 12 | {{- if and $profile_page $profile_page.Params.team -}} 13 | {{$name}} 14 | {{- else -}} 15 | {{$name}} 16 | {{- end -}} 17 | 18 | {{- end -}} 19 | {{ end }} 20 | 21 | {{ if not (reflect.IsSlice .) }} 22 | {{- $.Params.author }} 23 | {{ end }} 24 | 25 | {{ end }} 26 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/pretty_date_ranges.html: -------------------------------------------------------------------------------- 1 | {{ $date := .Date }} 2 | {{ $single_format := "January 2, 2006" }} 3 | {{ $range_start_format := "January 2" }} 4 | {{ $range_end_format := "2, 2006" }} 5 | 6 | {{ with .Params.date_end }} 7 | {{ if eq (time $date).Month (time .).Month }} 8 | {{ (time $date).Format $range_start_format }} – {{ (time .).Format $range_end_format }} 9 | {{ else }} 10 | {{ (time $date).Format $range_start_format }} – {{ (time .).Format $single_format }} 11 | {{ end }} 12 | {{ else }} 13 | {{ (time $date).Format $single_format }} 14 | {{ end }} 15 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/layouts/partials/sidebar.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
Categories
5 | {{ range $key, $value := $.Site.Taxonomies.categories }} 6 | 9 | {{ end }} 10 |
11 | 12 |
13 | {{ partial "events_sticky" . }} 14 |
15 |
16 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/gitHubLogo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 14 | 15 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/menuToggler.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidy-back-01.svg: -------------------------------------------------------------------------------- 1 | tidy-back -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidy-back-02.svg: -------------------------------------------------------------------------------- 1 | tidy-back -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidy-back-03.svg: -------------------------------------------------------------------------------- 1 | tidy-back -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidy-event-back-conf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 22 | 23 | 24 | 25 | 27 | 28 | 29 | 30 | 31 | 33 | 34 | 35 | 36 | 37 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidy-event-back-meetup.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 21 | 22 | 23 | 24 | 25 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidy-packages-back-01.svg: -------------------------------------------------------------------------------- 1 | tidy-packages-back -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidy-packages-back-02.svg: -------------------------------------------------------------------------------- 1 | tidy-packages-back -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidy-packages-back-03.svg: -------------------------------------------------------------------------------- 1 | tidy-packages-back -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidyCategoryCaseStudy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidyCategoryDeepDive.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidyCategoryLearn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidyCategoryOther.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidyCategoryPackage.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/tidyCategoryProgramming.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/css/images/twitterLogo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 13 | 14 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/favicon.ico -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/muli-v12-latin-300.eot -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/muli-v12-latin-300.ttf -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/muli-v12-latin-300.woff -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/muli-v12-latin-300.woff2 -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/muli-v12-latin-700.eot -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-700.svg: -------------------------------------------------------------------------------- 1 | Error 500 (Server Error)!!1

500. That’s an error.

There was an error. Please try again later. That’s all we know.

-------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/muli-v12-latin-700.ttf -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/muli-v12-latin-700.woff -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/muli-v12-latin-700.woff2 -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/muli-v12-latin-regular.eot -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/muli-v12-latin-regular.ttf -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/muli-v12-latin-regular.woff -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/muli-v12-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/muli-v12-latin-regular.woff2 -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-italic.eot -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-italic.ttf -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-italic.woff -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-italic.woff2 -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-regular.eot -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-regular.ttf -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-regular.woff -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/fonts/source-code-pro-v11-latin-regular.woff2 -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/Color/RStudio-Education.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/Color/RStudio-Education.jpg -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/White/rstudio-edu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/White/rstudio-edu.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/bee1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/bee1.jpg -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/cover.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/favicon.ico -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/favicons/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #da532c 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/favicons/favicon.ico -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/favicons/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "short_name": "", 4 | "icons": [ 5 | { 6 | "src": "https://www.tidyverse.org/images/favicons/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "https://www.tidyverse.org/images/favicons/android-chrome-512x512.png", 12 | "sizes": "512x512", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#ffffff", 17 | "background_color": "#ffffff", 18 | "display": "standalone" 19 | } 20 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hex-dplyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hex-dplyr.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hex-forcats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hex-forcats.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hex-ggplot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hex-ggplot2.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hex-grey-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hex-grey-solid.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hex-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hex-grey.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hex-haven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hex-haven.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hex-purrr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hex-purrr.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hex-readr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hex-readr.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hex-stringr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hex-stringr.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hex-tibble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hex-tibble.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hex-tidyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hex-tidyr.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hex-tidyverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hex-tidyverse.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/hugo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/hugo-logo.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/logo.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/images/tidyverse-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/images/tidyverse-default.png -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/js/home.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function() { 3 | $(window).on('scroll', function(event) { 4 | var scrollPos = $(event.target).scrollTop(); 5 | if (scrollPos > 20) { 6 | $('#appTidyverseSite').addClass("shrinkHeader"); 7 | } 8 | else { 9 | $('#appTidyverseSite').removeClass("shrinkHeader"); 10 | } 11 | }); 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/js/math-code.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var i, text, code, codes = document.getElementsByTagName('code'); 3 | for (i = 0; i < codes.length;) { 4 | code = codes[i]; 5 | if (code.parentNode.tagName !== 'PRE' && code.childElementCount === 0) { 6 | text = code.textContent; 7 | if (/^\$[^$]/.test(text) && /[^$]\$$/.test(text)) { 8 | text = text.replace(/^\$/, '\\(').replace(/\$$/, '\\)'); 9 | code.textContent = text; 10 | } 11 | if (/^\\\((.|\s)+\\\)$/.test(text) || /^\\\[(.|\s)+\\\]$/.test(text) || 12 | /^\$(.|\s)+\$$/.test(text) || 13 | /^\\begin\{([^}]+)\}(.|\s)+\\end\{[^}]+\}$/.test(text)) { 14 | code.outerHTML = code.innerHTML; // remove 15 | continue; 16 | } 17 | } 18 | i++; 19 | } 20 | })(); 21 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/js/site.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function() { 3 | $('#menuToggler').on('click', function(event) { 4 | if ($('#menuItems').hasClass('showMenu')) { 5 | $('#menuItems').removeClass("showMenu"); 6 | } 7 | else { 8 | $('#menuItems').addClass("showMenu"); 9 | } 10 | }); 11 | }); 12 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | .fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | .fa-icon-rotate(@degrees, @rotation) { 15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; 16 | -webkit-transform: rotate(@degrees); 17 | -ms-transform: rotate(@degrees); 18 | transform: rotate(@degrees); 19 | } 20 | 21 | .fa-icon-flip(@horiz, @vert, @rotation) { 22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; 23 | -webkit-transform: scale(@horiz, @vert); 24 | -ms-transform: scale(@horiz, @vert); 25 | transform: scale(@horiz, @vert); 26 | } 27 | 28 | 29 | // Only display content to screen readers. A la Bootstrap 4. 30 | // 31 | // See: http://a11yproject.com/posts/how-to-hide-content/ 32 | 33 | .sr-only() { 34 | position: absolute; 35 | width: 1px; 36 | height: 1px; 37 | padding: 0; 38 | margin: -1px; 39 | overflow: hidden; 40 | clip: rect(0,0,0,0); 41 | border: 0; 42 | } 43 | 44 | // Use in conjunction with .sr-only to only display content when it's focused. 45 | // 46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 47 | // 48 | // Credit: HTML5 Boilerplate 49 | 50 | .sr-only-focusable() { 51 | &:active, 52 | &:focus { 53 | position: static; 54 | width: auto; 55 | height: auto; 56 | margin: 0; 57 | overflow: visible; 58 | clip: auto; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | @mixin fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | @mixin fa-icon-rotate($degrees, $rotation) { 15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; 16 | -webkit-transform: rotate($degrees); 17 | -ms-transform: rotate($degrees); 18 | transform: rotate($degrees); 19 | } 20 | 21 | @mixin fa-icon-flip($horiz, $vert, $rotation) { 22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; 23 | -webkit-transform: scale($horiz, $vert); 24 | -ms-transform: scale($horiz, $vert); 25 | transform: scale($horiz, $vert); 26 | } 27 | 28 | 29 | // Only display content to screen readers. A la Bootstrap 4. 30 | // 31 | // See: http://a11yproject.com/posts/how-to-hide-content/ 32 | 33 | @mixin sr-only { 34 | position: absolute; 35 | width: 1px; 36 | height: 1px; 37 | padding: 0; 38 | margin: -1px; 39 | overflow: hidden; 40 | clip: rect(0,0,0,0); 41 | border: 0; 42 | } 43 | 44 | // Use in conjunction with .sr-only to only display content when it's focused. 45 | // 46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 47 | // 48 | // Credit: HTML5 Boilerplate 49 | 50 | @mixin sr-only-focusable { 51 | &:active, 52 | &:focus { 53 | position: static; 54 | width: auto; 55 | height: auto; 56 | margin: 0; 57 | overflow: visible; 58 | clip: auto; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/rmarkdown-libs/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /themes/hugo-tourmaline/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidymodels.org-legacy/639e5531c22fc7bffe54897dda6c9b05d5965a70/themes/hugo-tourmaline/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /themes/hugo-tourmaline/theme.toml: -------------------------------------------------------------------------------- 1 | name = "tourmaline" 2 | license = "MIT" 3 | licenselink = "https://github.com/rstudio/hugo-tourmaline/blob/master/LICENSE.md" 4 | description = "A simple responsive blog theme for Hugo forked from versions by Jonathan Rutheiser and Yihui Xie, with modifications to make it work better for teams." 5 | homepage = "" 6 | min_version = "0.53" 7 | tags = ["teams", 8 | "responsive", 9 | "blog", 10 | "minimal" 11 | ] 12 | features = ["blog", 13 | "events", 14 | "authors" 15 | ] 16 | 17 | [author] 18 | name = "Alison Hill" 19 | homepage = "https://alison.rbind.io/" 20 | 21 | # If porting an existing theme 22 | [original] 23 | name = "" 24 | homepage = "" 25 | repo = "" -------------------------------------------------------------------------------- /tidymodels.org.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: XeLaTeX 14 | 15 | AutoAppendNewline: Yes 16 | 17 | BuildType: Website 18 | --------------------------------------------------------------------------------