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
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,
"metacritic" BIGINT,
"cinemascore" VARCHAR,
"cinemascore_1" VARCHAR
);
Anyone who has the link will be able to view this.