Latest Netflix Data With 26+ Joined Attributes
Latest, complete Netflix movie dataset created from 4 APIs
@kaggle.ashishgup_netflix_rotten_tomatoes_metacritic_imdb
Latest, complete Netflix movie dataset created from 4 APIs
@kaggle.ashishgup_netflix_rotten_tomatoes_metacritic_imdb
Explore on FlixGem.com, powered by Polymer Search.
Netflix has a quantity-over-quality problem. This is part of an effort to help solve this. I was trying to figure out a way to find hidden gems in their catalog but found it exceedingly hard to get the latest dataset that has ratings and many other attributes to help make sense of it. To help me and others dig deep into the latest Netflix content, I created this dataset. This is the same dataset that powers FlixGem.com, the aforementioned side project.
This dataset combines data sources from Netflix, Rotten Tomatoes, IMBD, posters, box office information, trailers on YouTube, and more using a variety of APIs. Note that there is no official Netflix API.
I also added a unique metric called "Hidden Gem Score", which I calculated using low review count and high rating. Lower the review count and higher the user rating, higher the hidden gem score.
Recent Netflix data is incredibly hard to come up. This dataset is updated every month. This was lasted updated in early April 2021.
Explore this dataset using Polymer Search: FlixGem.com.
Polymer Search uses data algorithms and some AI to auto-create a fully interactive search & knowledge discovery interface for any structured data set.
CREATE TABLE netflix_rotten_tomatoes_metacritic_imdb (
"title" VARCHAR,
"genre" VARCHAR,
"tags" VARCHAR,
"languages" VARCHAR,
"series_or_movie" VARCHAR,
"hidden_gem_score" DOUBLE,
"country_availability" VARCHAR,
"runtime" VARCHAR,
"director" VARCHAR,
"writer" VARCHAR,
"actors" VARCHAR,
"view_rating" VARCHAR,
"imdb_score" DOUBLE,
"rotten_tomatoes_score" DOUBLE,
"metacritic_score" DOUBLE,
"awards_received" DOUBLE,
"awards_nominated_for" DOUBLE,
"boxoffice" VARCHAR,
"release_date" VARCHAR,
"netflix_release_date" TIMESTAMP,
"production_house" VARCHAR,
"netflix_link" VARCHAR,
"imdb_link" VARCHAR,
"summary" VARCHAR,
"imdb_votes" DOUBLE,
"image" VARCHAR,
"poster" VARCHAR,
"tmdb_trailer" VARCHAR,
"trailer_site" VARCHAR
);Anyone who has the link will be able to view this.