Baselight

IMDb Genre-wise Movies Dataset And Sparse Matrices

Contains 75k+ movies, collected from IMDb website: 22 genres + 1 master dataset.

@kaggle.soumyasacharya_imdb_movies_dataset

Documentary Df
@kaggle.soumyasacharya_imdb_movies_dataset.documentary_df

  • 18.14 KB
  • 1 row
  • 24 columns
imdb_title_id

Imdb Title Id

title

Title

original_title

Original Title

year

Year

date_published

Date Published

genre

Genre

duration

Duration

country

Country

language

Language

director

Director

writer

Writer

production_company

Production Company

actors

Actors

description

Description

avg_vote

Avg Vote

votes

Votes

budget

Budget

usa_gross_income

Usa Gross Income

worlwide_gross_income

Worlwide Gross Income

metascore

Metascore

reviews_from_users

Reviews From Users

reviews_from_critics

Reviews From Critics

description_words

Description #words

movie_title

Movie Title

tt9617578It Started as a JokeIt Started as a Joke2019Sun Mar 10 2019 00:00:00 GMT+0000 (Coordinated Universal Time)Documentary76Julie Smith Clem, Ken DruckermanLeft/RightMichael Ian Black, Wyatt Cenac, Jo Firestone, Jon Glaser, Ira Glass, Bobcat Goldthwait, John Hodgman, Eugene Mirman, Aparna Nancherla, Kumail Nanjiani, Kristen Schaal, Michael Showalter, Reggie WattsA look at the decade-long run of the Eugene Mirman Comedy Festival in Brooklyn, the alternative comedy scene in New York, and Eugene's personal life.7.11122725it started as a joke

CREATE TABLE documentary_df (
  "imdb_title_id" VARCHAR,
  "title" VARCHAR,
  "original_title" VARCHAR,
  "year" BIGINT,
  "date_published" TIMESTAMP,
  "genre" VARCHAR,
  "duration" BIGINT,
  "country" VARCHAR,
  "language" VARCHAR,
  "director" VARCHAR,
  "writer" VARCHAR,
  "production_company" VARCHAR,
  "actors" VARCHAR,
  "description" VARCHAR,
  "avg_vote" DOUBLE,
  "votes" BIGINT,
  "budget" VARCHAR,
  "usa_gross_income" VARCHAR,
  "worlwide_gross_income" VARCHAR,
  "metascore" VARCHAR,
  "reviews_from_users" DOUBLE,
  "reviews_from_critics" DOUBLE,
  "description_words" BIGINT,
  "movie_title" VARCHAR
);

Share link

Anyone who has the link will be able to view this.