├── .gitignore ├── 2022-04 ├── finalfit_demo.Rmd └── melanoma_factored.rda ├── 2022-05 └── geom_bar_vs_col.R ├── 2022-06 └── reprex_demo.Rmd ├── 2022-08 ├── global_map.r └── reshape_pivot.rmd ├── 2022-09 └── plot_improvements.rmd ├── 2022-10 └── stringr_demo.rmd ├── 2022-11 └── join_demo.r ├── 2023-03 └── tableone_finalfit.rmd ├── 2023-08 ├── data_cleaning.Rmd ├── demo_ufo_sightings_advanced.csv ├── demo_ufo_sightings_gap.csv ├── demo_ufo_sightings_original.csv ├── parameter_report.R └── reports_automated.Rmd ├── 2023-10 ├── data_orig │ └── data_orig │ │ ├── excel │ │ ├── all_months.xlsx │ │ ├── february_project_dataset.xlsx │ │ ├── january_project_dataset.xlsx │ │ └── march_project_dataset.xlsx │ │ ├── february_project_dataset.csv │ │ ├── february_test_dataset.csv │ │ ├── january_project_dataset.csv │ │ └── march_project_dataset.csv ├── dataclean2.Rmd └── read_multiple_spreadsheets.R ├── 2023-11 ├── quarto.sh └── quarto_1.qmd ├── 2024-02 ├── 2020-02_venn-diagram_transcript.json ├── 2020-02_venn-diagram_transcript.srt ├── 2020-02_venn-diagram_transcript.txt ├── consort_diagram.pdf ├── factors.R ├── flowchart.md ├── flowchart.qmd ├── flowchart_files │ └── figure-commonmark │ │ └── unnamed-chunk-2-1.png ├── venn_diagram.rmd └── venn_diagrams-link.txt ├── 2024-03 ├── app.R ├── factors.R ├── factors_transcripts.txt ├── ggplot_efficient.qmd ├── ggplot_efficient_transcript.txt ├── licodata_raw.csv └── shiny_transcript.txt ├── 2024-04 ├── DAG_demo.qmd ├── dag_transcript.txt ├── gt_tables.qmd └── gt_transcript.txt ├── 2024-05 ├── fuzzy_match.qmd └── fuzzy_match_transcript.txt ├── 2024-08 ├── tidymodels.qmd └── tidymodels_transcript.txt ├── 2024-09 ├── tidytext.qmd └── tidytext_transcript.txt ├── 2024-11 ├── tidymodels_resample.qmd └── tidymodels_resample_transcript.txt ├── README.md ├── healthyr_demos.Rproj └── video_thumbnails ├── DAG.jpg ├── GT.jpg ├── consort.PNG ├── data_clean.png ├── data_clean2.jpg ├── finalfit.png ├── forcats.png ├── fuzzy.jpg ├── geom_bar.png ├── globalmap_demo.png ├── join_demo.png ├── plot_function.PNG ├── plot_improvements.png ├── plotting_stat.PNG ├── quarto_1.PNG ├── quarto_1.jpg ├── quarto_2.PNG ├── quarto_2.jpg ├── report_parameters.png ├── reprex.png ├── reshape_data.png ├── shiny.PNG ├── spreadsheets.PNG ├── spreadsheets.jpg ├── stringr.png ├── tableone_finalfit.png ├── tidymodels1.PNG ├── tidymodels2.PNG ├── tidytext.PNG └── venn.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | .DS_Store 3 | .Rproj.user 4 | *html -------------------------------------------------------------------------------- /2022-04/finalfit_demo.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2022-04/finalfit_demo.Rmd -------------------------------------------------------------------------------- /2022-04/melanoma_factored.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2022-04/melanoma_factored.rda -------------------------------------------------------------------------------- /2022-05/geom_bar_vs_col.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2022-05/geom_bar_vs_col.R -------------------------------------------------------------------------------- /2022-06/reprex_demo.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2022-06/reprex_demo.Rmd -------------------------------------------------------------------------------- /2022-08/global_map.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2022-08/global_map.r -------------------------------------------------------------------------------- /2022-08/reshape_pivot.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2022-08/reshape_pivot.rmd -------------------------------------------------------------------------------- /2022-09/plot_improvements.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2022-09/plot_improvements.rmd -------------------------------------------------------------------------------- /2022-10/stringr_demo.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2022-10/stringr_demo.rmd -------------------------------------------------------------------------------- /2022-11/join_demo.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2022-11/join_demo.r -------------------------------------------------------------------------------- /2023-03/tableone_finalfit.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-03/tableone_finalfit.rmd -------------------------------------------------------------------------------- /2023-08/data_cleaning.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-08/data_cleaning.Rmd -------------------------------------------------------------------------------- /2023-08/demo_ufo_sightings_advanced.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-08/demo_ufo_sightings_advanced.csv -------------------------------------------------------------------------------- /2023-08/demo_ufo_sightings_gap.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-08/demo_ufo_sightings_gap.csv -------------------------------------------------------------------------------- /2023-08/demo_ufo_sightings_original.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-08/demo_ufo_sightings_original.csv -------------------------------------------------------------------------------- /2023-08/parameter_report.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-08/parameter_report.R -------------------------------------------------------------------------------- /2023-08/reports_automated.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-08/reports_automated.Rmd -------------------------------------------------------------------------------- /2023-10/data_orig/data_orig/excel/all_months.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-10/data_orig/data_orig/excel/all_months.xlsx -------------------------------------------------------------------------------- /2023-10/data_orig/data_orig/excel/february_project_dataset.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-10/data_orig/data_orig/excel/february_project_dataset.xlsx -------------------------------------------------------------------------------- /2023-10/data_orig/data_orig/excel/january_project_dataset.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-10/data_orig/data_orig/excel/january_project_dataset.xlsx -------------------------------------------------------------------------------- /2023-10/data_orig/data_orig/excel/march_project_dataset.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-10/data_orig/data_orig/excel/march_project_dataset.xlsx -------------------------------------------------------------------------------- /2023-10/data_orig/data_orig/february_project_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-10/data_orig/data_orig/february_project_dataset.csv -------------------------------------------------------------------------------- /2023-10/data_orig/data_orig/february_test_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-10/data_orig/data_orig/february_test_dataset.csv -------------------------------------------------------------------------------- /2023-10/data_orig/data_orig/january_project_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-10/data_orig/data_orig/january_project_dataset.csv -------------------------------------------------------------------------------- /2023-10/data_orig/data_orig/march_project_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-10/data_orig/data_orig/march_project_dataset.csv -------------------------------------------------------------------------------- /2023-10/dataclean2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-10/dataclean2.Rmd -------------------------------------------------------------------------------- /2023-10/read_multiple_spreadsheets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-10/read_multiple_spreadsheets.R -------------------------------------------------------------------------------- /2023-11/quarto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-11/quarto.sh -------------------------------------------------------------------------------- /2023-11/quarto_1.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2023-11/quarto_1.qmd -------------------------------------------------------------------------------- /2024-02/2020-02_venn-diagram_transcript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-02/2020-02_venn-diagram_transcript.json -------------------------------------------------------------------------------- /2024-02/2020-02_venn-diagram_transcript.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-02/2020-02_venn-diagram_transcript.srt -------------------------------------------------------------------------------- /2024-02/2020-02_venn-diagram_transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-02/2020-02_venn-diagram_transcript.txt -------------------------------------------------------------------------------- /2024-02/consort_diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-02/consort_diagram.pdf -------------------------------------------------------------------------------- /2024-02/factors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-02/factors.R -------------------------------------------------------------------------------- /2024-02/flowchart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-02/flowchart.md -------------------------------------------------------------------------------- /2024-02/flowchart.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-02/flowchart.qmd -------------------------------------------------------------------------------- /2024-02/flowchart_files/figure-commonmark/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-02/flowchart_files/figure-commonmark/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /2024-02/venn_diagram.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-02/venn_diagram.rmd -------------------------------------------------------------------------------- /2024-02/venn_diagrams-link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-02/venn_diagrams-link.txt -------------------------------------------------------------------------------- /2024-03/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-03/app.R -------------------------------------------------------------------------------- /2024-03/factors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-03/factors.R -------------------------------------------------------------------------------- /2024-03/factors_transcripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-03/factors_transcripts.txt -------------------------------------------------------------------------------- /2024-03/ggplot_efficient.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-03/ggplot_efficient.qmd -------------------------------------------------------------------------------- /2024-03/ggplot_efficient_transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-03/ggplot_efficient_transcript.txt -------------------------------------------------------------------------------- /2024-03/licodata_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-03/licodata_raw.csv -------------------------------------------------------------------------------- /2024-03/shiny_transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-03/shiny_transcript.txt -------------------------------------------------------------------------------- /2024-04/DAG_demo.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-04/DAG_demo.qmd -------------------------------------------------------------------------------- /2024-04/dag_transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-04/dag_transcript.txt -------------------------------------------------------------------------------- /2024-04/gt_tables.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-04/gt_tables.qmd -------------------------------------------------------------------------------- /2024-04/gt_transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-04/gt_transcript.txt -------------------------------------------------------------------------------- /2024-05/fuzzy_match.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-05/fuzzy_match.qmd -------------------------------------------------------------------------------- /2024-05/fuzzy_match_transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-05/fuzzy_match_transcript.txt -------------------------------------------------------------------------------- /2024-08/tidymodels.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-08/tidymodels.qmd -------------------------------------------------------------------------------- /2024-08/tidymodels_transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-08/tidymodels_transcript.txt -------------------------------------------------------------------------------- /2024-09/tidytext.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-09/tidytext.qmd -------------------------------------------------------------------------------- /2024-09/tidytext_transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-09/tidytext_transcript.txt -------------------------------------------------------------------------------- /2024-11/tidymodels_resample.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-11/tidymodels_resample.qmd -------------------------------------------------------------------------------- /2024-11/tidymodels_resample_transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/2024-11/tidymodels_resample_transcript.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/README.md -------------------------------------------------------------------------------- /healthyr_demos.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/healthyr_demos.Rproj -------------------------------------------------------------------------------- /video_thumbnails/DAG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/DAG.jpg -------------------------------------------------------------------------------- /video_thumbnails/GT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/GT.jpg -------------------------------------------------------------------------------- /video_thumbnails/consort.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/consort.PNG -------------------------------------------------------------------------------- /video_thumbnails/data_clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/data_clean.png -------------------------------------------------------------------------------- /video_thumbnails/data_clean2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/data_clean2.jpg -------------------------------------------------------------------------------- /video_thumbnails/finalfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/finalfit.png -------------------------------------------------------------------------------- /video_thumbnails/forcats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/forcats.png -------------------------------------------------------------------------------- /video_thumbnails/fuzzy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/fuzzy.jpg -------------------------------------------------------------------------------- /video_thumbnails/geom_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/geom_bar.png -------------------------------------------------------------------------------- /video_thumbnails/globalmap_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/globalmap_demo.png -------------------------------------------------------------------------------- /video_thumbnails/join_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/join_demo.png -------------------------------------------------------------------------------- /video_thumbnails/plot_function.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/plot_function.PNG -------------------------------------------------------------------------------- /video_thumbnails/plot_improvements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/plot_improvements.png -------------------------------------------------------------------------------- /video_thumbnails/plotting_stat.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/plotting_stat.PNG -------------------------------------------------------------------------------- /video_thumbnails/quarto_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/quarto_1.PNG -------------------------------------------------------------------------------- /video_thumbnails/quarto_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/quarto_1.jpg -------------------------------------------------------------------------------- /video_thumbnails/quarto_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/quarto_2.PNG -------------------------------------------------------------------------------- /video_thumbnails/quarto_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/quarto_2.jpg -------------------------------------------------------------------------------- /video_thumbnails/report_parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/report_parameters.png -------------------------------------------------------------------------------- /video_thumbnails/reprex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/reprex.png -------------------------------------------------------------------------------- /video_thumbnails/reshape_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/reshape_data.png -------------------------------------------------------------------------------- /video_thumbnails/shiny.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/shiny.PNG -------------------------------------------------------------------------------- /video_thumbnails/spreadsheets.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/spreadsheets.PNG -------------------------------------------------------------------------------- /video_thumbnails/spreadsheets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/spreadsheets.jpg -------------------------------------------------------------------------------- /video_thumbnails/stringr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/stringr.png -------------------------------------------------------------------------------- /video_thumbnails/tableone_finalfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/tableone_finalfit.png -------------------------------------------------------------------------------- /video_thumbnails/tidymodels1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/tidymodels1.PNG -------------------------------------------------------------------------------- /video_thumbnails/tidymodels2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/tidymodels2.PNG -------------------------------------------------------------------------------- /video_thumbnails/tidytext.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/tidytext.PNG -------------------------------------------------------------------------------- /video_thumbnails/venn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SurgicalInformatics/healthyr_demos/HEAD/video_thumbnails/venn.jpg --------------------------------------------------------------------------------