Baselight

Top 100 Popular Movies From 2003 To 2022 (iMDB)

The dataset contains 2000 movies and 13 features

@kaggle.georgescutelnicu_top_100_popular_movies_from_2003_to_2022_imdb

About this Dataset

Top 100 Popular Movies From 2003 To 2022 (iMDB)

The dataset contains most 100 popular movies for each year in the interval 2003-2022.
The Data is Ideal for Exploratory Data Analysis.
Every single information has been collected by web scraping and can be found on iMDB.

The dataset contains:

  • Title
  • Rating
  • Year
  • Month
  • Certificate
  • Runtime
  • Director/s
  • Stars
  • Genre/s
  • Filming Location
  • Budget
  • Income
  • Country of Origin

Tables

Movies

@kaggle.georgescutelnicu_top_100_popular_movies_from_2003_to_2022_imdb.movies
  • 175.12 KB
  • 2000 rows
  • 13 columns
Loading...

CREATE TABLE movies (
  "title" VARCHAR,
  "rating" DOUBLE,
  "year" BIGINT,
  "month" VARCHAR,
  "certificate" VARCHAR,
  "runtime" VARCHAR,
  "directors" VARCHAR,
  "stars" VARCHAR,
  "genre" VARCHAR,
  "filming_location" VARCHAR,
  "budget" VARCHAR,
  "income" VARCHAR,
  "country_of_origin" VARCHAR
);