Blockbuster Movies Database 1975-2015
Ten most popular movies each year, for the past 40 years (1975-2015)
@kaggle.meetnagadia_blockbuster_movies_database_19752015
Ten most popular movies each year, for the past 40 years (1975-2015)
@kaggle.meetnagadia_blockbuster_movies_database_19752015
A data categorization job where we asked the crowd to find out information about the ten most popular movies, each year, for the past 40 years (1975-2015). Dataset includes: * Movie titles
Poster URLs for each
Genre information
Run time
MPAA ratings
IMDB rating
Rotten Tomato audience/critic rating
Box office receipts (adjusted for inflation)Movie titles
Poster URLs for each
Genre information
Run time
MPAA ratings
IMDB rating
Rotten Tomato audience/critic rating
Box office receipts (adjusted for inflation)
CREATE TABLE blockbuster_top_ten_movies_per_year_dfe (
"audience_freshness" DOUBLE,
"poster_url" VARCHAR,
"rt_audience_score" DOUBLE,
"rt_freshness" DOUBLE,
"rt_score" DOUBLE,
"n_2015_inflation" VARCHAR -- 2015 Inflation,
"adjusted" VARCHAR,
"genres" VARCHAR,
"genre_1" VARCHAR,
"genre_2" VARCHAR,
"genre_3" VARCHAR,
"imdb_rating" DOUBLE,
"length" DOUBLE,
"rank_in_year" DOUBLE,
"rating" VARCHAR,
"release_date" VARCHAR,
"studio" VARCHAR,
"title" VARCHAR,
"worldwide_gross" VARCHAR,
"year" DOUBLE
);Anyone who has the link will be able to view this.