Baselight

Marvel Movie Dataset

Dataset shows raw and cleaned files with title,budget,revenue and reviews

@kaggle.minisam_marvel_movie_dataset

Loading...
Loading...

About this Dataset

Marvel Movie Dataset

This is a dataset that contains Marvel movie info both in the raw state as well as cleaned.

The dataset was scraped from
[(https://en.wikipedia.org/wiki/List_of_films_based_on_Marvel_Comics_publications)

It was scraped using Pandas and cleaned with regex Expressions

Tables

Marvel Clean

@kaggle.minisam_marvel_movie_dataset.marvel_clean
  • 10.1 KB
  • 64 rows
  • 8 columns
Loading...

CREATE TABLE marvel_clean (
  "title" VARCHAR,
  "distributor" VARCHAR,
  "releasedateus" TIMESTAMP,
  "budget" BIGINT,
  "openingweekendnorthamerica" BIGINT,
  "northamerica" BIGINT,
  "otherterritories" BIGINT,
  "worldwide" BIGINT
);

Marvel Reviews

@kaggle.minisam_marvel_movie_dataset.marvel_reviews
  • 6.08 KB
  • 67 rows
  • 4 columns
Loading...

CREATE TABLE marvel_reviews (
  "film" VARCHAR,
  "rotten_tomatoes" VARCHAR,
  "metacritic" VARCHAR,
  "cinemascore" VARCHAR
);

Marvel Reviews Clean

@kaggle.minisam_marvel_movie_dataset.marvel_reviews_clean
  • 5.52 KB
  • 67 rows
  • 5 columns
Loading...

CREATE TABLE marvel_reviews_clean (
  "film" VARCHAR,
  "rotten_tomatoesin" BIGINT,
  "metacritic" BIGINT,
  "cinemascore" VARCHAR,
  "cinemascore_1" VARCHAR
);

Share link

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