├── .gitignore ├── README.html ├── README.md ├── examples ├── documents │ ├── codebook_template.docx │ ├── map_template.pptx │ └── workflow_reference_doc.pdf └── project_files │ ├── even_simpler_pipeline │ ├── data │ │ ├── fav_artists.rds │ │ ├── master_data.rds │ │ ├── new_data_games.rds │ │ ├── new_data_music.rds │ │ ├── old_master_data.rds │ │ └── survey_data.xlsx │ ├── even_simpler_pipeline.Rproj │ ├── reports │ │ ├── example_report.Rmd │ │ ├── example_report.html │ │ └── plots │ │ │ └── game_viz.rds │ └── scripts │ │ ├── docking_script.R │ │ ├── processing_script.R │ │ └── viz_script.R │ └── simple_pipeline │ ├── data │ ├── backup_data │ │ ├── master_geo-2022-07-19-2.RDS │ │ ├── master_geo-2022-07-19-3.RDS │ │ ├── master_geo-2022-07-19-4.RDS │ │ ├── master_geo-2022-07-19-5.RDS │ │ ├── master_geo-2022-07-19-6.RDS │ │ └── master_geo-2022-07-19.RDS │ ├── locations.csv │ ├── master_EXAMPLE_geo.RDS │ ├── master_EXAMPLE_locations.RDS │ ├── master_geo.RDS │ └── packages.csv │ ├── functions │ └── file_updater.R │ ├── reports │ └── travel_log.html │ ├── scripts │ ├── deliverable_script.Rmd │ ├── geo_script.R │ ├── images │ │ └── rmd_map.png │ ├── package_handler.R │ ├── pipeline_dock.R │ └── viz_script.R │ ├── simple_pipeline.Rproj │ └── tables │ └── locations_table.RDS ├── images ├── aar.png ├── data.png ├── datamapex.png ├── docex.png ├── es_banner.png ├── external.png ├── extvalidation.png ├── fe_es_banner.png ├── filestructure.png ├── header_back.png ├── header_back_light.png ├── headfirst.gif ├── initial_dream.png ├── interactions.png ├── internal.png ├── internal_ext.png ├── intvalidation.png ├── light_back.png ├── mainpoints.png ├── metaex.png ├── modularizedcode.png ├── modularizedcode2.png ├── mp_1.png ├── mp_2.png ├── mp_3.png ├── mp_4.png ├── myself.png ├── narcan.png ├── patches.png ├── perfectpipe.png ├── pl_2.png ├── pl_3.png ├── pl_4.png ├── pl_5.png ├── pl_flow.png ├── readme_logo.png ├── susexs.png ├── title_back.png ├── transdocex.png ├── val_sus_banner.png ├── validationtypes.png └── workflowex.png ├── index.Rmd ├── index.html ├── index_files └── figure-html │ └── cars-1.svg ├── libs ├── Proj4Leaflet │ └── proj4leaflet.js ├── 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 ├── freezeframe │ └── freezeframe.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 ├── leaflet-binding │ └── leaflet.js ├── leaflet │ ├── images │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ ├── leaflet.css │ └── leaflet.js ├── leafletfix │ └── leafletfix.css ├── proj4 │ └── proj4.min.js ├── remark-css │ ├── default-fonts.css │ └── default.css ├── rstudio_leaflet │ ├── images │ │ └── 1px.png │ └── rstudio_leaflet.css ├── slide-tone │ └── slide-tone.js ├── tone │ └── Tone.js ├── xaringanExtra-extra-styles │ └── xaringanExtra-extra-styles.css └── xaringanExtra-freezeframe │ └── freezeframe-init.js ├── other_resources.html ├── other_resources.md ├── pipelines_in_R.Rproj └── scripts ├── animation.css └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/.gitignore -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/README.md -------------------------------------------------------------------------------- /examples/documents/codebook_template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/documents/codebook_template.docx -------------------------------------------------------------------------------- /examples/documents/map_template.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/documents/map_template.pptx -------------------------------------------------------------------------------- /examples/documents/workflow_reference_doc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/documents/workflow_reference_doc.pdf -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/data/fav_artists.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/data/fav_artists.rds -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/data/master_data.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/data/master_data.rds -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/data/new_data_games.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/data/new_data_games.rds -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/data/new_data_music.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/data/new_data_music.rds -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/data/old_master_data.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/data/old_master_data.rds -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/data/survey_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/data/survey_data.xlsx -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/even_simpler_pipeline.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/even_simpler_pipeline.Rproj -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/reports/example_report.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/reports/example_report.Rmd -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/reports/example_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/reports/example_report.html -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/reports/plots/game_viz.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/reports/plots/game_viz.rds -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/scripts/docking_script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/scripts/docking_script.R -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/scripts/processing_script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/scripts/processing_script.R -------------------------------------------------------------------------------- /examples/project_files/even_simpler_pipeline/scripts/viz_script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/even_simpler_pipeline/scripts/viz_script.R -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/data/backup_data/master_geo-2022-07-19-2.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/data/backup_data/master_geo-2022-07-19-2.RDS -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/data/backup_data/master_geo-2022-07-19-3.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/data/backup_data/master_geo-2022-07-19-3.RDS -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/data/backup_data/master_geo-2022-07-19-4.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/data/backup_data/master_geo-2022-07-19-4.RDS -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/data/backup_data/master_geo-2022-07-19-5.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/data/backup_data/master_geo-2022-07-19-5.RDS -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/data/backup_data/master_geo-2022-07-19-6.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/data/backup_data/master_geo-2022-07-19-6.RDS -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/data/backup_data/master_geo-2022-07-19.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/data/backup_data/master_geo-2022-07-19.RDS -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/data/locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/data/locations.csv -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/data/master_EXAMPLE_geo.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/data/master_EXAMPLE_geo.RDS -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/data/master_EXAMPLE_locations.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/data/master_EXAMPLE_locations.RDS -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/data/master_geo.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/data/master_geo.RDS -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/data/packages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/data/packages.csv -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/functions/file_updater.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/functions/file_updater.R -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/reports/travel_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/reports/travel_log.html -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/scripts/deliverable_script.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/scripts/deliverable_script.Rmd -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/scripts/geo_script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/scripts/geo_script.R -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/scripts/images/rmd_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/scripts/images/rmd_map.png -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/scripts/package_handler.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/scripts/package_handler.R -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/scripts/pipeline_dock.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/scripts/pipeline_dock.R -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/scripts/viz_script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/scripts/viz_script.R -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/simple_pipeline.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/simple_pipeline.Rproj -------------------------------------------------------------------------------- /examples/project_files/simple_pipeline/tables/locations_table.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/examples/project_files/simple_pipeline/tables/locations_table.RDS -------------------------------------------------------------------------------- /images/aar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/aar.png -------------------------------------------------------------------------------- /images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/data.png -------------------------------------------------------------------------------- /images/datamapex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/datamapex.png -------------------------------------------------------------------------------- /images/docex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/docex.png -------------------------------------------------------------------------------- /images/es_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/es_banner.png -------------------------------------------------------------------------------- /images/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/external.png -------------------------------------------------------------------------------- /images/extvalidation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/extvalidation.png -------------------------------------------------------------------------------- /images/fe_es_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/fe_es_banner.png -------------------------------------------------------------------------------- /images/filestructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/filestructure.png -------------------------------------------------------------------------------- /images/header_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/header_back.png -------------------------------------------------------------------------------- /images/header_back_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/header_back_light.png -------------------------------------------------------------------------------- /images/headfirst.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/headfirst.gif -------------------------------------------------------------------------------- /images/initial_dream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/initial_dream.png -------------------------------------------------------------------------------- /images/interactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/interactions.png -------------------------------------------------------------------------------- /images/internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/internal.png -------------------------------------------------------------------------------- /images/internal_ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/internal_ext.png -------------------------------------------------------------------------------- /images/intvalidation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/intvalidation.png -------------------------------------------------------------------------------- /images/light_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/light_back.png -------------------------------------------------------------------------------- /images/mainpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/mainpoints.png -------------------------------------------------------------------------------- /images/metaex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/metaex.png -------------------------------------------------------------------------------- /images/modularizedcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/modularizedcode.png -------------------------------------------------------------------------------- /images/modularizedcode2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/modularizedcode2.png -------------------------------------------------------------------------------- /images/mp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/mp_1.png -------------------------------------------------------------------------------- /images/mp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/mp_2.png -------------------------------------------------------------------------------- /images/mp_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/mp_3.png -------------------------------------------------------------------------------- /images/mp_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/mp_4.png -------------------------------------------------------------------------------- /images/myself.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/myself.png -------------------------------------------------------------------------------- /images/narcan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/narcan.png -------------------------------------------------------------------------------- /images/patches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/patches.png -------------------------------------------------------------------------------- /images/perfectpipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/perfectpipe.png -------------------------------------------------------------------------------- /images/pl_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/pl_2.png -------------------------------------------------------------------------------- /images/pl_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/pl_3.png -------------------------------------------------------------------------------- /images/pl_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/pl_4.png -------------------------------------------------------------------------------- /images/pl_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/pl_5.png -------------------------------------------------------------------------------- /images/pl_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/pl_flow.png -------------------------------------------------------------------------------- /images/readme_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/readme_logo.png -------------------------------------------------------------------------------- /images/susexs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/susexs.png -------------------------------------------------------------------------------- /images/title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/title_back.png -------------------------------------------------------------------------------- /images/transdocex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/transdocex.png -------------------------------------------------------------------------------- /images/val_sus_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/val_sus_banner.png -------------------------------------------------------------------------------- /images/validationtypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/validationtypes.png -------------------------------------------------------------------------------- /images/workflowex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/images/workflowex.png -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/index.Rmd -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/index.html -------------------------------------------------------------------------------- /index_files/figure-html/cars-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/index_files/figure-html/cars-1.svg -------------------------------------------------------------------------------- /libs/Proj4Leaflet/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/Proj4Leaflet/proj4leaflet.js -------------------------------------------------------------------------------- /libs/crosstalk/css/crosstalk.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/crosstalk/css/crosstalk.min.css -------------------------------------------------------------------------------- /libs/crosstalk/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/crosstalk/js/crosstalk.js -------------------------------------------------------------------------------- /libs/crosstalk/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/crosstalk/js/crosstalk.js.map -------------------------------------------------------------------------------- /libs/crosstalk/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/crosstalk/js/crosstalk.min.js -------------------------------------------------------------------------------- /libs/crosstalk/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/crosstalk/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /libs/crosstalk/scss/crosstalk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/crosstalk/scss/crosstalk.scss -------------------------------------------------------------------------------- /libs/datatables-binding/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/datatables-binding/datatables.js -------------------------------------------------------------------------------- /libs/datatables-css/datatables-crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/datatables-css/datatables-crosstalk.css -------------------------------------------------------------------------------- /libs/dt-core/css/jquery.dataTables.extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/dt-core/css/jquery.dataTables.extra.css -------------------------------------------------------------------------------- /libs/dt-core/css/jquery.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/dt-core/css/jquery.dataTables.min.css -------------------------------------------------------------------------------- /libs/dt-core/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/dt-core/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /libs/freezeframe/freezeframe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/freezeframe/freezeframe.min.js -------------------------------------------------------------------------------- /libs/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/header-attrs/header-attrs.js -------------------------------------------------------------------------------- /libs/htmlwidgets/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/htmlwidgets/htmlwidgets.js -------------------------------------------------------------------------------- /libs/jquery/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/jquery/jquery-3.6.0.js -------------------------------------------------------------------------------- /libs/jquery/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/jquery/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /libs/jquery/jquery-3.6.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/jquery/jquery-3.6.0.min.map -------------------------------------------------------------------------------- /libs/leaflet-binding/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/leaflet-binding/leaflet.js -------------------------------------------------------------------------------- /libs/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /libs/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/leaflet/images/layers.png -------------------------------------------------------------------------------- /libs/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /libs/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /libs/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /libs/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/leaflet/leaflet.css -------------------------------------------------------------------------------- /libs/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/leaflet/leaflet.js -------------------------------------------------------------------------------- /libs/leafletfix/leafletfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/leafletfix/leafletfix.css -------------------------------------------------------------------------------- /libs/proj4/proj4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/proj4/proj4.min.js -------------------------------------------------------------------------------- /libs/remark-css/default-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/remark-css/default-fonts.css -------------------------------------------------------------------------------- /libs/remark-css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/remark-css/default.css -------------------------------------------------------------------------------- /libs/rstudio_leaflet/images/1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/rstudio_leaflet/images/1px.png -------------------------------------------------------------------------------- /libs/rstudio_leaflet/rstudio_leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/rstudio_leaflet/rstudio_leaflet.css -------------------------------------------------------------------------------- /libs/slide-tone/slide-tone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/slide-tone/slide-tone.js -------------------------------------------------------------------------------- /libs/tone/Tone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/tone/Tone.js -------------------------------------------------------------------------------- /libs/xaringanExtra-extra-styles/xaringanExtra-extra-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/xaringanExtra-extra-styles/xaringanExtra-extra-styles.css -------------------------------------------------------------------------------- /libs/xaringanExtra-freezeframe/freezeframe-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/libs/xaringanExtra-freezeframe/freezeframe-init.js -------------------------------------------------------------------------------- /other_resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/other_resources.html -------------------------------------------------------------------------------- /other_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/other_resources.md -------------------------------------------------------------------------------- /pipelines_in_R.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/pipelines_in_R.Rproj -------------------------------------------------------------------------------- /scripts/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/scripts/animation.css -------------------------------------------------------------------------------- /scripts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meghansaha/pipelines_in_R/HEAD/scripts/style.css --------------------------------------------------------------------------------