├── .gitignore ├── 2020_07_28_penguins.Rmd ├── 2020_08_04_europe_energy.Rmd ├── 2020_08_18_extinct_plants.Rmd ├── 2020_08_25_chopped.Rmd ├── 2020_09_01_crop_yields.Rmd ├── 2020_09_08_friends.Rmd ├── 2020_09_15_government_spending_kids.Rmd ├── 2020_09_22_himalayan_climbers.Rmd ├── 2020_09_29_taylor_swift_beyonce.Rmd ├── 2020_10_06_ncaa_womens_basketball.Rmd ├── 2020_10_20_beer_awards.Rmd ├── 2020_11_03_ikea.Rmd ├── 2020_11_10_phone_history.Rmd ├── 2020_12_15_ninja_warrior.Rmd ├── 2020_12_22_big_mac_index.Rmd ├── 2021_01_05_transit_costs.Rmd ├── 2021_01_12_tate_art.Rmd ├── 2021_01_19_kenya_census.Rmd ├── 2021_02_02_hbcu.Rmd ├── 2021_02_09_lifetime_earn.Rmd ├── 2021_02_23_employment_earnings.Rmd ├── 2021_03_02_super_bowl_ads.Rmd ├── 2021_03_09_bechdel_test.Rmd ├── 2021_03_16_video_games.Rmd ├── 2021_03_23_un_votes.Rmd ├── 2021_04_06_deforestation.Rmd ├── 2021_04_13_post_offices.Rmd ├── 2021_04_20_netflix_titles.Rmd ├── 2021_05_04_water_access.Rmd ├── 2021_05_11_broadband.Rmd ├── 2021_05_18_salary_survey.Rmd ├── 2021_06_08_great_lakes_fish.Rmd ├── 2021_09_14_billboard_100.Rmd ├── 2021_10_05_registered_nurses.Rmd ├── 2021_11_23_doctor_who.Rmd ├── 2022_02_22_world_freedom_index.Rmd ├── 2022_08_23_chips.Rmd ├── 2022_09_06_legos.Rmd ├── 2022_11_15_web_page_metrics.Rmd ├── 2022_12_06_elevators_nyc.Rmd ├── README.md ├── african-american-achievements.Rmd ├── african-american-history.Rmd ├── animal-crossing.Rmd ├── australian-animal-outcomes.Rmd ├── baltimore_bridges.Rmd ├── beach-volleyball.Rmd ├── beer-production.Rmd ├── bike_traffic.Rmd ├── bird-collisions.Rmd ├── board-games.Rmd ├── bob-ross.Rmd ├── broadway-shinybones ├── .gitignore ├── README.md ├── _site.yml ├── app.R ├── broadway-shinybones.Rproj ├── components │ └── README.md ├── pages │ └── README.md └── show_metrics.rds ├── broadway.Rmd ├── car-economy.Rmd ├── caribou-locations.Rmd ├── cetaceans.Rmd ├── chips └── app.R ├── cocktails.Rmd ├── coffee-ratings.Rmd ├── college-majors.Rmd ├── cord-19.Rmd ├── cran-code.Rmd ├── crop-yields-shiny ├── app.Rmd └── yields_tidy.rds ├── data-screencasts.Rproj ├── french-trains.Rmd ├── gdpr.Rmd ├── golden-age-tv.Rmd ├── grand-slams.Rmd ├── honeycomb-puzzle.Rmd ├── horror-movie-ratings.Rmd ├── lego-data ├── colors.csv.gz ├── elements.csv.gz ├── inventories.csv.gz ├── inventory_minifigs.csv.gz ├── inventory_parts.csv.gz ├── inventory_sets.csv.gz ├── minifigs.csv.gz ├── part_categories.csv.gz ├── part_relationships.csv.gz ├── parts.csv.gz ├── sets.csv.gz └── themes.csv.gz ├── malaria.Rmd ├── media-franchises.Rmd ├── medium-datasci.Rmd ├── ml-practice ├── board-games.Rmd ├── chopped.Rmd ├── ep11.Rmd ├── ep11_EDA.Rmd ├── ep12.Rmd ├── ep12_eda.Rmd ├── ep4.Rmd ├── ep5.Rmd ├── ep7.Rmd ├── ep7_EDA.Rmd ├── ep9.Rmd ├── ep9_EDA.Rmd ├── memes │ └── templates │ │ ├── drake.jpeg │ │ ├── galaxybrain3.png │ │ ├── galaxybrain4.jpg │ │ └── happysad.jpg └── ml-template.Rmd ├── movie-profit.Rmd ├── nobel-prize.Rmd ├── nyc-pizza.Rmd ├── nyc-restaurants.Rmd ├── nyc-squirrels-app └── app.R ├── nyc-squirrels.Rmd ├── office-transcripts.Rmd ├── pascals-triangle.Rmd ├── plastic-waste.Rmd ├── r-downloads.Rmd ├── ramen-ratings.Rmd ├── registered-nurses └── app.R ├── riddler-circular-table.Rmd ├── riddler-die-reroll.Rmd ├── riddler-die-roll-low.Rmd ├── riddler-prisoner-coin-flip.Rmd ├── riddler-spam-comments.Rmd ├── screencast-annotations └── README.md ├── seattle-pets.Rmd ├── simpsons-guests.Rmd ├── space-launches.Rmd ├── student-teacher-ratios.Rmd ├── thanksgiving.Rmd ├── tidytuesday-tweets.Rmd ├── tour-de-france.Rmd ├── transit_costs └── transit_costs.Rmd ├── trees.Rmd ├── umbrella-week.Rmd ├── uncanny-xmen.Rmd ├── us-dairy.Rmd ├── us-wind.Rmd ├── us_phds.Rmd ├── video-game-app.Rmd ├── viz-buzz └── viz-buzz-pilot.R ├── volcano-eruptions.Rmd ├── wine-ratings.Rmd ├── women-workplace-app └── app.R ├── women-workplace.Rmd └── womens-world-cup.Rmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/.gitignore -------------------------------------------------------------------------------- /2020_07_28_penguins.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_07_28_penguins.Rmd -------------------------------------------------------------------------------- /2020_08_04_europe_energy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_08_04_europe_energy.Rmd -------------------------------------------------------------------------------- /2020_08_18_extinct_plants.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_08_18_extinct_plants.Rmd -------------------------------------------------------------------------------- /2020_08_25_chopped.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_08_25_chopped.Rmd -------------------------------------------------------------------------------- /2020_09_01_crop_yields.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_09_01_crop_yields.Rmd -------------------------------------------------------------------------------- /2020_09_08_friends.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_09_08_friends.Rmd -------------------------------------------------------------------------------- /2020_09_15_government_spending_kids.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_09_15_government_spending_kids.Rmd -------------------------------------------------------------------------------- /2020_09_22_himalayan_climbers.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_09_22_himalayan_climbers.Rmd -------------------------------------------------------------------------------- /2020_09_29_taylor_swift_beyonce.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_09_29_taylor_swift_beyonce.Rmd -------------------------------------------------------------------------------- /2020_10_06_ncaa_womens_basketball.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_10_06_ncaa_womens_basketball.Rmd -------------------------------------------------------------------------------- /2020_10_20_beer_awards.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_10_20_beer_awards.Rmd -------------------------------------------------------------------------------- /2020_11_03_ikea.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_11_03_ikea.Rmd -------------------------------------------------------------------------------- /2020_11_10_phone_history.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_11_10_phone_history.Rmd -------------------------------------------------------------------------------- /2020_12_15_ninja_warrior.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_12_15_ninja_warrior.Rmd -------------------------------------------------------------------------------- /2020_12_22_big_mac_index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2020_12_22_big_mac_index.Rmd -------------------------------------------------------------------------------- /2021_01_05_transit_costs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_01_05_transit_costs.Rmd -------------------------------------------------------------------------------- /2021_01_12_tate_art.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_01_12_tate_art.Rmd -------------------------------------------------------------------------------- /2021_01_19_kenya_census.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_01_19_kenya_census.Rmd -------------------------------------------------------------------------------- /2021_02_02_hbcu.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_02_02_hbcu.Rmd -------------------------------------------------------------------------------- /2021_02_09_lifetime_earn.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_02_09_lifetime_earn.Rmd -------------------------------------------------------------------------------- /2021_02_23_employment_earnings.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_02_23_employment_earnings.Rmd -------------------------------------------------------------------------------- /2021_03_02_super_bowl_ads.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_03_02_super_bowl_ads.Rmd -------------------------------------------------------------------------------- /2021_03_09_bechdel_test.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_03_09_bechdel_test.Rmd -------------------------------------------------------------------------------- /2021_03_16_video_games.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_03_16_video_games.Rmd -------------------------------------------------------------------------------- /2021_03_23_un_votes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_03_23_un_votes.Rmd -------------------------------------------------------------------------------- /2021_04_06_deforestation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_04_06_deforestation.Rmd -------------------------------------------------------------------------------- /2021_04_13_post_offices.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_04_13_post_offices.Rmd -------------------------------------------------------------------------------- /2021_04_20_netflix_titles.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_04_20_netflix_titles.Rmd -------------------------------------------------------------------------------- /2021_05_04_water_access.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_05_04_water_access.Rmd -------------------------------------------------------------------------------- /2021_05_11_broadband.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_05_11_broadband.Rmd -------------------------------------------------------------------------------- /2021_05_18_salary_survey.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_05_18_salary_survey.Rmd -------------------------------------------------------------------------------- /2021_06_08_great_lakes_fish.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_06_08_great_lakes_fish.Rmd -------------------------------------------------------------------------------- /2021_09_14_billboard_100.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_09_14_billboard_100.Rmd -------------------------------------------------------------------------------- /2021_10_05_registered_nurses.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_10_05_registered_nurses.Rmd -------------------------------------------------------------------------------- /2021_11_23_doctor_who.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2021_11_23_doctor_who.Rmd -------------------------------------------------------------------------------- /2022_02_22_world_freedom_index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2022_02_22_world_freedom_index.Rmd -------------------------------------------------------------------------------- /2022_08_23_chips.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2022_08_23_chips.Rmd -------------------------------------------------------------------------------- /2022_09_06_legos.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2022_09_06_legos.Rmd -------------------------------------------------------------------------------- /2022_11_15_web_page_metrics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2022_11_15_web_page_metrics.Rmd -------------------------------------------------------------------------------- /2022_12_06_elevators_nyc.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/2022_12_06_elevators_nyc.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/README.md -------------------------------------------------------------------------------- /african-american-achievements.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/african-american-achievements.Rmd -------------------------------------------------------------------------------- /african-american-history.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/african-american-history.Rmd -------------------------------------------------------------------------------- /animal-crossing.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/animal-crossing.Rmd -------------------------------------------------------------------------------- /australian-animal-outcomes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/australian-animal-outcomes.Rmd -------------------------------------------------------------------------------- /baltimore_bridges.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/baltimore_bridges.Rmd -------------------------------------------------------------------------------- /beach-volleyball.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/beach-volleyball.Rmd -------------------------------------------------------------------------------- /beer-production.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/beer-production.Rmd -------------------------------------------------------------------------------- /bike_traffic.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/bike_traffic.Rmd -------------------------------------------------------------------------------- /bird-collisions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/bird-collisions.Rmd -------------------------------------------------------------------------------- /board-games.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/board-games.Rmd -------------------------------------------------------------------------------- /bob-ross.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/bob-ross.Rmd -------------------------------------------------------------------------------- /broadway-shinybones/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/broadway-shinybones/.gitignore -------------------------------------------------------------------------------- /broadway-shinybones/README.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 | -------------------------------------------------------------------------------- /broadway-shinybones/_site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/broadway-shinybones/_site.yml -------------------------------------------------------------------------------- /broadway-shinybones/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/broadway-shinybones/app.R -------------------------------------------------------------------------------- /broadway-shinybones/broadway-shinybones.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/broadway-shinybones/broadway-shinybones.Rproj -------------------------------------------------------------------------------- /broadway-shinybones/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/broadway-shinybones/components/README.md -------------------------------------------------------------------------------- /broadway-shinybones/pages/README.md: -------------------------------------------------------------------------------- 1 | # Pages 2 | 3 | Add all page modules to this directory. 4 | -------------------------------------------------------------------------------- /broadway-shinybones/show_metrics.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/broadway-shinybones/show_metrics.rds -------------------------------------------------------------------------------- /broadway.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/broadway.Rmd -------------------------------------------------------------------------------- /car-economy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/car-economy.Rmd -------------------------------------------------------------------------------- /caribou-locations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/caribou-locations.Rmd -------------------------------------------------------------------------------- /cetaceans.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/cetaceans.Rmd -------------------------------------------------------------------------------- /chips/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/chips/app.R -------------------------------------------------------------------------------- /cocktails.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/cocktails.Rmd -------------------------------------------------------------------------------- /coffee-ratings.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/coffee-ratings.Rmd -------------------------------------------------------------------------------- /college-majors.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/college-majors.Rmd -------------------------------------------------------------------------------- /cord-19.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/cord-19.Rmd -------------------------------------------------------------------------------- /cran-code.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/cran-code.Rmd -------------------------------------------------------------------------------- /crop-yields-shiny/app.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/crop-yields-shiny/app.Rmd -------------------------------------------------------------------------------- /crop-yields-shiny/yields_tidy.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/crop-yields-shiny/yields_tidy.rds -------------------------------------------------------------------------------- /data-screencasts.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/data-screencasts.Rproj -------------------------------------------------------------------------------- /french-trains.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/french-trains.Rmd -------------------------------------------------------------------------------- /gdpr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/gdpr.Rmd -------------------------------------------------------------------------------- /golden-age-tv.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/golden-age-tv.Rmd -------------------------------------------------------------------------------- /grand-slams.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/grand-slams.Rmd -------------------------------------------------------------------------------- /honeycomb-puzzle.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/honeycomb-puzzle.Rmd -------------------------------------------------------------------------------- /horror-movie-ratings.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/horror-movie-ratings.Rmd -------------------------------------------------------------------------------- /lego-data/colors.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/lego-data/colors.csv.gz -------------------------------------------------------------------------------- /lego-data/elements.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/lego-data/elements.csv.gz -------------------------------------------------------------------------------- /lego-data/inventories.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/lego-data/inventories.csv.gz -------------------------------------------------------------------------------- /lego-data/inventory_minifigs.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/lego-data/inventory_minifigs.csv.gz -------------------------------------------------------------------------------- /lego-data/inventory_parts.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/lego-data/inventory_parts.csv.gz -------------------------------------------------------------------------------- /lego-data/inventory_sets.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/lego-data/inventory_sets.csv.gz -------------------------------------------------------------------------------- /lego-data/minifigs.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/lego-data/minifigs.csv.gz -------------------------------------------------------------------------------- /lego-data/part_categories.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/lego-data/part_categories.csv.gz -------------------------------------------------------------------------------- /lego-data/part_relationships.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/lego-data/part_relationships.csv.gz -------------------------------------------------------------------------------- /lego-data/parts.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/lego-data/parts.csv.gz -------------------------------------------------------------------------------- /lego-data/sets.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/lego-data/sets.csv.gz -------------------------------------------------------------------------------- /lego-data/themes.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/lego-data/themes.csv.gz -------------------------------------------------------------------------------- /malaria.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/malaria.Rmd -------------------------------------------------------------------------------- /media-franchises.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/media-franchises.Rmd -------------------------------------------------------------------------------- /medium-datasci.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/medium-datasci.Rmd -------------------------------------------------------------------------------- /ml-practice/board-games.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/board-games.Rmd -------------------------------------------------------------------------------- /ml-practice/chopped.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/chopped.Rmd -------------------------------------------------------------------------------- /ml-practice/ep11.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/ep11.Rmd -------------------------------------------------------------------------------- /ml-practice/ep11_EDA.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/ep11_EDA.Rmd -------------------------------------------------------------------------------- /ml-practice/ep12.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/ep12.Rmd -------------------------------------------------------------------------------- /ml-practice/ep12_eda.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/ep12_eda.Rmd -------------------------------------------------------------------------------- /ml-practice/ep4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/ep4.Rmd -------------------------------------------------------------------------------- /ml-practice/ep5.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/ep5.Rmd -------------------------------------------------------------------------------- /ml-practice/ep7.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/ep7.Rmd -------------------------------------------------------------------------------- /ml-practice/ep7_EDA.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/ep7_EDA.Rmd -------------------------------------------------------------------------------- /ml-practice/ep9.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/ep9.Rmd -------------------------------------------------------------------------------- /ml-practice/ep9_EDA.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/ep9_EDA.Rmd -------------------------------------------------------------------------------- /ml-practice/memes/templates/drake.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/memes/templates/drake.jpeg -------------------------------------------------------------------------------- /ml-practice/memes/templates/galaxybrain3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/memes/templates/galaxybrain3.png -------------------------------------------------------------------------------- /ml-practice/memes/templates/galaxybrain4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/memes/templates/galaxybrain4.jpg -------------------------------------------------------------------------------- /ml-practice/memes/templates/happysad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/memes/templates/happysad.jpg -------------------------------------------------------------------------------- /ml-practice/ml-template.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ml-practice/ml-template.Rmd -------------------------------------------------------------------------------- /movie-profit.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/movie-profit.Rmd -------------------------------------------------------------------------------- /nobel-prize.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/nobel-prize.Rmd -------------------------------------------------------------------------------- /nyc-pizza.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/nyc-pizza.Rmd -------------------------------------------------------------------------------- /nyc-restaurants.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/nyc-restaurants.Rmd -------------------------------------------------------------------------------- /nyc-squirrels-app/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/nyc-squirrels-app/app.R -------------------------------------------------------------------------------- /nyc-squirrels.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/nyc-squirrels.Rmd -------------------------------------------------------------------------------- /office-transcripts.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/office-transcripts.Rmd -------------------------------------------------------------------------------- /pascals-triangle.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/pascals-triangle.Rmd -------------------------------------------------------------------------------- /plastic-waste.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/plastic-waste.Rmd -------------------------------------------------------------------------------- /r-downloads.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/r-downloads.Rmd -------------------------------------------------------------------------------- /ramen-ratings.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/ramen-ratings.Rmd -------------------------------------------------------------------------------- /registered-nurses/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/registered-nurses/app.R -------------------------------------------------------------------------------- /riddler-circular-table.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/riddler-circular-table.Rmd -------------------------------------------------------------------------------- /riddler-die-reroll.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/riddler-die-reroll.Rmd -------------------------------------------------------------------------------- /riddler-die-roll-low.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/riddler-die-roll-low.Rmd -------------------------------------------------------------------------------- /riddler-prisoner-coin-flip.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/riddler-prisoner-coin-flip.Rmd -------------------------------------------------------------------------------- /riddler-spam-comments.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/riddler-spam-comments.Rmd -------------------------------------------------------------------------------- /screencast-annotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/screencast-annotations/README.md -------------------------------------------------------------------------------- /seattle-pets.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/seattle-pets.Rmd -------------------------------------------------------------------------------- /simpsons-guests.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/simpsons-guests.Rmd -------------------------------------------------------------------------------- /space-launches.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/space-launches.Rmd -------------------------------------------------------------------------------- /student-teacher-ratios.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/student-teacher-ratios.Rmd -------------------------------------------------------------------------------- /thanksgiving.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/thanksgiving.Rmd -------------------------------------------------------------------------------- /tidytuesday-tweets.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/tidytuesday-tweets.Rmd -------------------------------------------------------------------------------- /tour-de-france.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/tour-de-france.Rmd -------------------------------------------------------------------------------- /transit_costs/transit_costs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/transit_costs/transit_costs.Rmd -------------------------------------------------------------------------------- /trees.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/trees.Rmd -------------------------------------------------------------------------------- /umbrella-week.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/umbrella-week.Rmd -------------------------------------------------------------------------------- /uncanny-xmen.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/uncanny-xmen.Rmd -------------------------------------------------------------------------------- /us-dairy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/us-dairy.Rmd -------------------------------------------------------------------------------- /us-wind.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/us-wind.Rmd -------------------------------------------------------------------------------- /us_phds.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/us_phds.Rmd -------------------------------------------------------------------------------- /video-game-app.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/video-game-app.Rmd -------------------------------------------------------------------------------- /viz-buzz/viz-buzz-pilot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/viz-buzz/viz-buzz-pilot.R -------------------------------------------------------------------------------- /volcano-eruptions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/volcano-eruptions.Rmd -------------------------------------------------------------------------------- /wine-ratings.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/wine-ratings.Rmd -------------------------------------------------------------------------------- /women-workplace-app/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/women-workplace-app/app.R -------------------------------------------------------------------------------- /women-workplace.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/women-workplace.Rmd -------------------------------------------------------------------------------- /womens-world-cup.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgrtwo/data-screencasts/HEAD/womens-world-cup.Rmd --------------------------------------------------------------------------------