[This article was first published on Deeply Trivial, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
2020 has been a tough year, and I’ve been doing my best to keep busy (and distracted from all the insanity – both at the personal and worldwide levels). Earlier this year, I took a course in machine learning techniques and have been working on applying those techniques to work datasets, as well as fun sets through Kaggle.com.
Today, I thought I’d share another dataset I discovered through Kaggle: TV shows available on one or more streaming service (Netflix, Hulu, Prime, and Disney+). There are lots of fun things we could do with this dataset. Let’s start with some basic visualization and summarization.
The biggest selling point of Disney+ is to watch their movies, though the few TV shows they offer can’t really be viewed elsewhere (e.g., The Mandalorian). For the sake of simplicity, we’ll drop Disney+, and focus on the big 3 services for TV shows.
The dataset also contains an indicator of recommended age, which we can plot.
Many are ‘NA’ for age, though it isn’t clear why. Are these older shows, added before these streaming services were required to add guidance on these issues? Is this issue seen more for a particular streaming site? Let’s find out
It seems the biggest “offender” for missing age information is Prime – about 62% of the shows don’t have an age indicator. More surprising, though, is the minimum year for some of these categories. I’m no expert in the history of TV, but I don’t think any shows were being broadcast in 1901. What are these outliers?
YearOutliers <- Shows %>%
filter(Year < 1940)
list(YearOutliers$Title)
## [[1]]
## [1] "Born To Explore" "The Three Stooges"
## [3] "The Little Rascals Classics" "Space: The New Frontier"
## [5] "Gods & Monsters with Tony Robinson" "History of Westinghouse"
## [7] "Betty Boop"
Four of these entries are clearly in error – these are newer shows. This isn’t important at the moment, but it’s interesting nonetheless.
In terms of getting the most “bang for your buck,” Amazon Prime has the most shows to offer (though if you’re looking for data on recommended age for the TV show, Prime has the most missingness). But Hulu and Netflix, in terms of volume, are pretty comparable to Prime. What can be said about the quality of content on each of the 3?
The dataset offers some indicators of quality: IMDb rating and Rotten Tomatoes score. How do the 3 services measure up on these indicators?