├── .gitignore ├── Academic_Tools ├── academic_tools.Rmd └── academic_tools.html ├── CodeCamp └── CodeCamp.Rmd ├── Drinks ├── alcohol_consumption.Rmd ├── alcohol_consumption.html └── cover.png ├── H1B └── H1B.Rmd ├── ISIS_twitter_network ├── .Rhistory ├── ISIS on twitter.Rmd └── ISIS_on_twitter.html ├── NYT_bestseller_cover └── NYT_bestseller_cover.Rmd ├── Oscars └── oscars.Rmd ├── README.md ├── SF-salary └── sf salary in r.Rmd ├── TED ├── TED.Rmd ├── TED_part2.Rmd └── TED_part3.Rmd ├── Urbandictionary └── Urbandictionary.Rmd ├── YCominator └── Ycombinator_startups.Rmd ├── airplane_crashes ├── airline_crashes.Rmd └── airplane_crashes.Rmd ├── banknote └── banknote.Rmd ├── bike └── bike.Rmd ├── cherry_blossom └── cherry_blossom.Rmd ├── collegefood └── collegefood.Rmd ├── cuisine_culture └── cuisine_culture.Rmd ├── dataviz_survey └── dataviz_survey.Rmd ├── dev_survey ├── dev_survey.Rmd └── dev_type.png ├── diseases └── diseases.Rmd ├── earthquakes └── earthquakes.Rmd ├── edu_googlebigquery └── edu_googlebigquery.Rmd ├── edx ├── edx.Rmd └── edx.html ├── elonmusk_tweets └── elonmusk_tweets.Rmd ├── epicurious_recipes └── epicurious_recipes.Rmd ├── extinct_languages └── extinct_language.Rmd ├── first_women └── first_women.Rmd ├── foodpoison └── foodpoison.Rmd ├── gadgetprice └── gadgetprice.Rmd ├── goodreads └── goodreads.Rmd ├── gtrend_dataviz └── gtrend_dataviz.Rmd ├── happiness ├── happiness.Rmd ├── happiness.jpg1 ├── happiness.jpg10 ├── happiness.jpg11 ├── happiness.jpg12 ├── happiness.jpg13 ├── happiness.jpg2 ├── happiness.jpg3 ├── happiness.jpg4 ├── happiness.jpg5 ├── happiness.jpg6 ├── happiness.jpg7 ├── happiness.jpg8 ├── happiness.jpg9 └── plots.pdf ├── hawker └── hawker.Rmd ├── homelessness └── homelessness.Rmd ├── insta_tagging └── insta_tagging.Rmd ├── lego └── lego.Rmd ├── lyric_repetitiveness ├── lyric_repetitiveness.Rmd └── output.csv ├── mapzen └── mapzen.Rmd ├── marvelcomics └── marvelcomics.Rmd ├── meteorites └── meteorites.Rmd ├── michelin_restaurants ├── cuisines.csv ├── michelin_restaurant.Rmd └── michelin_star_restaurant.xlsx ├── midas_list └── midas_list.Rmd ├── moma └── moma.Rmd ├── mondrian └── mondrian.Rmd ├── most_expensive_artwork └── most_expensive_artwork.Rmd ├── national_today └── national_today.Rmd ├── netflix └── netflix_imdb.ipynb ├── open_data ├── APAC & Middle East.svg ├── Africa.svg ├── Americas.svg ├── Asia.svg ├── Europe.svg └── open_data.Rmd ├── pantheon_popularity_index ├── .~pantheon_popularity_index__362.twbr ├── img │ └── Elizabeth I of England.jpg ├── pantheon_popularity_index.Rmd └── pantheon_popularity_index.twbx ├── public_holiday └── public_holiday.Rmd ├── r_stackoverflow ├── python_stackoverflow.Rmd └── r_stackoverflow.Rmd ├── refugee ├── refugee.Rmd └── refugee_part2.Rmd ├── rice_production └── rice_production.Rmd ├── roman_empires └── roman_empires.Rmd ├── scientific_migration └── scientific_migration.Rmd ├── shark_attack ├── shark_attack.twb ├── shark_attack_stats.Rmd └── shark_attack_stats.nb.html ├── silicon_valley_diversity └── silicon_valley_diversity.Rmd ├── skytrax └── skytrax.Rmd ├── sotu └── sotu.Rmd ├── stolen_art └── stolen_art.Rmd ├── tech_meetup_sg └── tech_meetup_sg.Rmd ├── thesimpsons └── thesimpsons.Rmd ├── toughest_sports ├── toughest_sport.Rmd └── toughest_sport.xlsx ├── ufo └── ufo.Rmd ├── wine ├── .~wine__3231.twbr ├── win.key ├── wine.Rmd ├── wine_flavor_leaf.png └── winecard.png ├── women_shoes └── women_shoes.Rmd ├── world-university-ranking ├── .Rhistory ├── ranking_variance.Rmd └── ranking_variance_kaggle_animation.Rmd ├── world_prison └── world_prison.Rmd ├── worldindex └── worldindex.Rmd └── youngpeople_survey └── youngpeople_survey.Rmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/.gitignore -------------------------------------------------------------------------------- /Academic_Tools/academic_tools.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/Academic_Tools/academic_tools.Rmd -------------------------------------------------------------------------------- /Academic_Tools/academic_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/Academic_Tools/academic_tools.html -------------------------------------------------------------------------------- /CodeCamp/CodeCamp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/CodeCamp/CodeCamp.Rmd -------------------------------------------------------------------------------- /Drinks/alcohol_consumption.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/Drinks/alcohol_consumption.Rmd -------------------------------------------------------------------------------- /Drinks/alcohol_consumption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/Drinks/alcohol_consumption.html -------------------------------------------------------------------------------- /Drinks/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/Drinks/cover.png -------------------------------------------------------------------------------- /H1B/H1B.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/H1B/H1B.Rmd -------------------------------------------------------------------------------- /ISIS_twitter_network/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/ISIS_twitter_network/.Rhistory -------------------------------------------------------------------------------- /ISIS_twitter_network/ISIS on twitter.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/ISIS_twitter_network/ISIS on twitter.Rmd -------------------------------------------------------------------------------- /ISIS_twitter_network/ISIS_on_twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/ISIS_twitter_network/ISIS_on_twitter.html -------------------------------------------------------------------------------- /NYT_bestseller_cover/NYT_bestseller_cover.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/NYT_bestseller_cover/NYT_bestseller_cover.Rmd -------------------------------------------------------------------------------- /Oscars/oscars.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/Oscars/oscars.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # opendata_viz -------------------------------------------------------------------------------- /SF-salary/sf salary in r.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/SF-salary/sf salary in r.Rmd -------------------------------------------------------------------------------- /TED/TED.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/TED/TED.Rmd -------------------------------------------------------------------------------- /TED/TED_part2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/TED/TED_part2.Rmd -------------------------------------------------------------------------------- /TED/TED_part3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/TED/TED_part3.Rmd -------------------------------------------------------------------------------- /Urbandictionary/Urbandictionary.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/Urbandictionary/Urbandictionary.Rmd -------------------------------------------------------------------------------- /YCominator/Ycombinator_startups.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/YCominator/Ycombinator_startups.Rmd -------------------------------------------------------------------------------- /airplane_crashes/airline_crashes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/airplane_crashes/airline_crashes.Rmd -------------------------------------------------------------------------------- /airplane_crashes/airplane_crashes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/airplane_crashes/airplane_crashes.Rmd -------------------------------------------------------------------------------- /banknote/banknote.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/banknote/banknote.Rmd -------------------------------------------------------------------------------- /bike/bike.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/bike/bike.Rmd -------------------------------------------------------------------------------- /cherry_blossom/cherry_blossom.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/cherry_blossom/cherry_blossom.Rmd -------------------------------------------------------------------------------- /collegefood/collegefood.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/collegefood/collegefood.Rmd -------------------------------------------------------------------------------- /cuisine_culture/cuisine_culture.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/cuisine_culture/cuisine_culture.Rmd -------------------------------------------------------------------------------- /dataviz_survey/dataviz_survey.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/dataviz_survey/dataviz_survey.Rmd -------------------------------------------------------------------------------- /dev_survey/dev_survey.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/dev_survey/dev_survey.Rmd -------------------------------------------------------------------------------- /dev_survey/dev_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/dev_survey/dev_type.png -------------------------------------------------------------------------------- /diseases/diseases.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/diseases/diseases.Rmd -------------------------------------------------------------------------------- /earthquakes/earthquakes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/earthquakes/earthquakes.Rmd -------------------------------------------------------------------------------- /edu_googlebigquery/edu_googlebigquery.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/edu_googlebigquery/edu_googlebigquery.Rmd -------------------------------------------------------------------------------- /edx/edx.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/edx/edx.Rmd -------------------------------------------------------------------------------- /edx/edx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/edx/edx.html -------------------------------------------------------------------------------- /elonmusk_tweets/elonmusk_tweets.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/elonmusk_tweets/elonmusk_tweets.Rmd -------------------------------------------------------------------------------- /epicurious_recipes/epicurious_recipes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/epicurious_recipes/epicurious_recipes.Rmd -------------------------------------------------------------------------------- /extinct_languages/extinct_language.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/extinct_languages/extinct_language.Rmd -------------------------------------------------------------------------------- /first_women/first_women.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/first_women/first_women.Rmd -------------------------------------------------------------------------------- /foodpoison/foodpoison.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/foodpoison/foodpoison.Rmd -------------------------------------------------------------------------------- /gadgetprice/gadgetprice.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/gadgetprice/gadgetprice.Rmd -------------------------------------------------------------------------------- /goodreads/goodreads.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/goodreads/goodreads.Rmd -------------------------------------------------------------------------------- /gtrend_dataviz/gtrend_dataviz.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/gtrend_dataviz/gtrend_dataviz.Rmd -------------------------------------------------------------------------------- /happiness/happiness.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.Rmd -------------------------------------------------------------------------------- /happiness/happiness.jpg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg1 -------------------------------------------------------------------------------- /happiness/happiness.jpg10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg10 -------------------------------------------------------------------------------- /happiness/happiness.jpg11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg11 -------------------------------------------------------------------------------- /happiness/happiness.jpg12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg12 -------------------------------------------------------------------------------- /happiness/happiness.jpg13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg13 -------------------------------------------------------------------------------- /happiness/happiness.jpg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg2 -------------------------------------------------------------------------------- /happiness/happiness.jpg3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg3 -------------------------------------------------------------------------------- /happiness/happiness.jpg4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg4 -------------------------------------------------------------------------------- /happiness/happiness.jpg5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg5 -------------------------------------------------------------------------------- /happiness/happiness.jpg6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg6 -------------------------------------------------------------------------------- /happiness/happiness.jpg7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg7 -------------------------------------------------------------------------------- /happiness/happiness.jpg8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg8 -------------------------------------------------------------------------------- /happiness/happiness.jpg9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/happiness.jpg9 -------------------------------------------------------------------------------- /happiness/plots.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/happiness/plots.pdf -------------------------------------------------------------------------------- /hawker/hawker.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/hawker/hawker.Rmd -------------------------------------------------------------------------------- /homelessness/homelessness.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/homelessness/homelessness.Rmd -------------------------------------------------------------------------------- /insta_tagging/insta_tagging.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/insta_tagging/insta_tagging.Rmd -------------------------------------------------------------------------------- /lego/lego.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/lego/lego.Rmd -------------------------------------------------------------------------------- /lyric_repetitiveness/lyric_repetitiveness.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/lyric_repetitiveness/lyric_repetitiveness.Rmd -------------------------------------------------------------------------------- /lyric_repetitiveness/output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/lyric_repetitiveness/output.csv -------------------------------------------------------------------------------- /mapzen/mapzen.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/mapzen/mapzen.Rmd -------------------------------------------------------------------------------- /marvelcomics/marvelcomics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/marvelcomics/marvelcomics.Rmd -------------------------------------------------------------------------------- /meteorites/meteorites.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/meteorites/meteorites.Rmd -------------------------------------------------------------------------------- /michelin_restaurants/cuisines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/michelin_restaurants/cuisines.csv -------------------------------------------------------------------------------- /michelin_restaurants/michelin_restaurant.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/michelin_restaurants/michelin_restaurant.Rmd -------------------------------------------------------------------------------- /michelin_restaurants/michelin_star_restaurant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/michelin_restaurants/michelin_star_restaurant.xlsx -------------------------------------------------------------------------------- /midas_list/midas_list.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/midas_list/midas_list.Rmd -------------------------------------------------------------------------------- /moma/moma.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/moma/moma.Rmd -------------------------------------------------------------------------------- /mondrian/mondrian.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/mondrian/mondrian.Rmd -------------------------------------------------------------------------------- /most_expensive_artwork/most_expensive_artwork.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/most_expensive_artwork/most_expensive_artwork.Rmd -------------------------------------------------------------------------------- /national_today/national_today.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/national_today/national_today.Rmd -------------------------------------------------------------------------------- /netflix/netflix_imdb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/netflix/netflix_imdb.ipynb -------------------------------------------------------------------------------- /open_data/APAC & Middle East.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/open_data/APAC & Middle East.svg -------------------------------------------------------------------------------- /open_data/Africa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/open_data/Africa.svg -------------------------------------------------------------------------------- /open_data/Americas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/open_data/Americas.svg -------------------------------------------------------------------------------- /open_data/Asia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/open_data/Asia.svg -------------------------------------------------------------------------------- /open_data/Europe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/open_data/Europe.svg -------------------------------------------------------------------------------- /open_data/open_data.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/open_data/open_data.Rmd -------------------------------------------------------------------------------- /pantheon_popularity_index/.~pantheon_popularity_index__362.twbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/pantheon_popularity_index/.~pantheon_popularity_index__362.twbr -------------------------------------------------------------------------------- /pantheon_popularity_index/img/Elizabeth I of England.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/pantheon_popularity_index/img/Elizabeth I of England.jpg -------------------------------------------------------------------------------- /pantheon_popularity_index/pantheon_popularity_index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/pantheon_popularity_index/pantheon_popularity_index.Rmd -------------------------------------------------------------------------------- /pantheon_popularity_index/pantheon_popularity_index.twbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/pantheon_popularity_index/pantheon_popularity_index.twbx -------------------------------------------------------------------------------- /public_holiday/public_holiday.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/public_holiday/public_holiday.Rmd -------------------------------------------------------------------------------- /r_stackoverflow/python_stackoverflow.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/r_stackoverflow/python_stackoverflow.Rmd -------------------------------------------------------------------------------- /r_stackoverflow/r_stackoverflow.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/r_stackoverflow/r_stackoverflow.Rmd -------------------------------------------------------------------------------- /refugee/refugee.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/refugee/refugee.Rmd -------------------------------------------------------------------------------- /refugee/refugee_part2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/refugee/refugee_part2.Rmd -------------------------------------------------------------------------------- /rice_production/rice_production.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/rice_production/rice_production.Rmd -------------------------------------------------------------------------------- /roman_empires/roman_empires.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/roman_empires/roman_empires.Rmd -------------------------------------------------------------------------------- /scientific_migration/scientific_migration.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/scientific_migration/scientific_migration.Rmd -------------------------------------------------------------------------------- /shark_attack/shark_attack.twb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/shark_attack/shark_attack.twb -------------------------------------------------------------------------------- /shark_attack/shark_attack_stats.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/shark_attack/shark_attack_stats.Rmd -------------------------------------------------------------------------------- /shark_attack/shark_attack_stats.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/shark_attack/shark_attack_stats.nb.html -------------------------------------------------------------------------------- /silicon_valley_diversity/silicon_valley_diversity.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/silicon_valley_diversity/silicon_valley_diversity.Rmd -------------------------------------------------------------------------------- /skytrax/skytrax.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/skytrax/skytrax.Rmd -------------------------------------------------------------------------------- /sotu/sotu.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/sotu/sotu.Rmd -------------------------------------------------------------------------------- /stolen_art/stolen_art.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/stolen_art/stolen_art.Rmd -------------------------------------------------------------------------------- /tech_meetup_sg/tech_meetup_sg.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/tech_meetup_sg/tech_meetup_sg.Rmd -------------------------------------------------------------------------------- /thesimpsons/thesimpsons.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/thesimpsons/thesimpsons.Rmd -------------------------------------------------------------------------------- /toughest_sports/toughest_sport.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/toughest_sports/toughest_sport.Rmd -------------------------------------------------------------------------------- /toughest_sports/toughest_sport.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/toughest_sports/toughest_sport.xlsx -------------------------------------------------------------------------------- /ufo/ufo.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/ufo/ufo.Rmd -------------------------------------------------------------------------------- /wine/.~wine__3231.twbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/wine/.~wine__3231.twbr -------------------------------------------------------------------------------- /wine/win.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/wine/win.key -------------------------------------------------------------------------------- /wine/wine.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/wine/wine.Rmd -------------------------------------------------------------------------------- /wine/wine_flavor_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/wine/wine_flavor_leaf.png -------------------------------------------------------------------------------- /wine/winecard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/wine/winecard.png -------------------------------------------------------------------------------- /women_shoes/women_shoes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/women_shoes/women_shoes.Rmd -------------------------------------------------------------------------------- /world-university-ranking/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/world-university-ranking/.Rhistory -------------------------------------------------------------------------------- /world-university-ranking/ranking_variance.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/world-university-ranking/ranking_variance.Rmd -------------------------------------------------------------------------------- /world-university-ranking/ranking_variance_kaggle_animation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/world-university-ranking/ranking_variance_kaggle_animation.Rmd -------------------------------------------------------------------------------- /world_prison/world_prison.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/world_prison/world_prison.Rmd -------------------------------------------------------------------------------- /worldindex/worldindex.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/worldindex/worldindex.Rmd -------------------------------------------------------------------------------- /youngpeople_survey/youngpeople_survey.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanhann10/opendata_viz/HEAD/youngpeople_survey/youngpeople_survey.Rmd --------------------------------------------------------------------------------