Baselight

Marvel Movie Dataset

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

@kaggle.minisam_marvel_movie_dataset

Marvel Clean
@kaggle.minisam_marvel_movie_dataset.marvel_clean

  • 10.1 KB
  • 64 rows
  • 8 columns
title

Title

distributor

Distributor

releasedateus

ReleaseDateUS

budget

Budget

openingweekendnorthamerica

OpeningWeekendNorthAmerica

northamerica

NorthAmerica

otherterritories

OtherTerritories

worldwide

Worldwide

Howard the DuckUniversal PicturesFri Aug 01 1986 00:00:00 GMT+0000 (Coordinated Universal Time)370000005070136162957742166700037962774
BladeNew Line CinemaFri Aug 21 1998 00:00:00 GMT+0000 (Coordinated Universal Time)45000000170738567008771861095812131183530
X-Men20th Century FoxFri Jul 14 2000 00:00:00 GMT+0000 (Coordinated Universal Time)7500000054471475157299717139039810296339527
Blade IINew Line CinemaFri Mar 22 2002 00:00:00 GMT+0000 (Coordinated Universal Time)54000000325280168234831972661713155010032
Spider-ManSony PicturesFri May 03 2002 00:00:00 GMT+0000 (Coordinated Universal Time)139000000114844116403706375418002176821708551
Daredevil20th Century FoxFri Feb 14 2003 00:00:00 GMT+0000 (Coordinated Universal Time)780000004031041910254351876636200179179718
X220th Century FoxFri May 02 2003 00:00:00 GMT+0000 (Coordinated Universal Time)11000000085558731214949694192761855407711549
HulkUniversal PicturesFri Jun 20 2003 00:00:00 GMT+0000 (Coordinated Universal Time)13700000062128420132177234113183246245360480
The PunisherLionsgate FilmsFri Apr 16 2004 00:00:00 GMT+0000 (Coordinated Universal Time)3300000013834527338101892088991654700105
Spider-Man 2Sony PicturesWed Jun 30 2004 00:00:00 GMT+0000 (Coordinated Universal Time)20000000088156227373585825415390628788976453

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

Share link

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