Do Children Have Bad Taste?

Motivation

I just wanted to begin the process of understanding how to visualize data using Seaborn. This seemed like the right opportunity to try out some code. This is by no means a serious attempt at trying to answer this question. This is nothing more than the exploratory phase of a data analysis project.

Guiding Question

  1. Are tv shows targeted at children less highly rated?

Data Preparation

Exploratory Data Visualization

At this point, I just wanted to understand how the categories differed.

Although the different scores show different results, what is shown is that there appears to be a significant dislike for tv shows targetted toward ealy teenage audiences. In my opinion, I could see why this would be the case (early teen shows are cringy). But I wanted to see why there was such a significant difference. So I decided to visualize the number of shows with for each category using a countplot.

With only 4 shows there is not a big enough sample size. Because barcharts can only tell a limited story, why not see what the distributions of these categories and their scores look like using a beeswarm plot?

Interestingly, although IMDb score distributions are similarly shaped, Rotten Tomatoes scores are quite different. For some reason Rotten Tomatoes scores are rarely given to tv shows that are for everyone. Additionally, if they are given a rating it is either faily high or really low. Without analyzing this too critically, this trend could be because Rotten Tomatoes prioritizes tv shows for more specific audiences. The author of the data set did not provide too much information on the data set, so a more rigorous analysis examining why the data behaves this way would require much more thorough research.

Conclusion

Apparently, without using a more thorough approach to answering this quesition, there is no significant difference between the age categories in terms of ratings. Because of the time constraints for this project, more robust statisitcal methods could not be used to provide a more convincing answer. In the next few weeks, I plan on coming back to this project to complete the analysis. I am really interested in doing more research on what the differences are between these rating platforms (partially because many people believe these platforms are biased).

Sources

The tv shows dataset was acquired form Kaggle user Ruchi Bhatia: https://www.kaggle.com/ruchi798/tv-shows-on-netflix-prime-video-hulu-and-disney

The solution for annotating the graphs seen above was taken from this source: https://www.geeksforgeeks.org/how-to-annotate-bars-in-barplot-with-matplotlib-in-python/