Marvel Movie Dataset
Dataset shows raw and cleaned files with title,budget,revenue and reviews
@kaggle.minisam_marvel_movie_dataset
Dataset shows raw and cleaned files with title,budget,revenue and reviews
@kaggle.minisam_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
CREATE TABLE marvel_clean (
"title" VARCHAR,
"distributor" VARCHAR,
"releasedateus" TIMESTAMP,
"budget" BIGINT,
"openingweekendnorthamerica" BIGINT,
"northamerica" BIGINT,
"otherterritories" BIGINT,
"worldwide" BIGINT
);CREATE TABLE marvel_reviews (
"film" VARCHAR,
"rotten_tomatoes" VARCHAR,
"metacritic" VARCHAR,
"cinemascore" VARCHAR
);CREATE TABLE marvel_reviews_clean (
"film" VARCHAR,
"rotten_tomatoesin" BIGINT -- Rotten Tomatoesin%,
"metacritic" BIGINT,
"cinemascore" VARCHAR,
"cinemascore_1" VARCHAR
);Anyone who has the link will be able to view this.