Baselight

Bechdel Test Results And Film Revenue Data

Exploring Gender Representation and Box Office Success in Films

@fivethirtyeight.bechdel

Bechdel Test Movie Dataset
@fivethirtyeight.bechdel.movies

Column Description
year Release year of the film
imdb IMDb ID for the film
title Title of the film
test Original Bechdel test result text (explains the outcome)
clean_test Cleaned version of the test result
binary Binary result: 1 if the film passes the Bechdel Test, 0 otherwise
budget Reported budget in millions (USD)
domgross Domestic box office gross in millions (USD)
intgross International box office gross in millions (USD)
code Concatenated code representing the Bechdel test status
budget_2013$ Budget adjusted for inflation to 2013 dollars (USD)
domgross_2013$ Domestic box office gross adjusted for inflation to 2013 dollars (USD)
intgross_2013$ International box office gross adjusted for inflation to 2013 dollars (USD)
period code Numeric code representing the period of the film’s release
decade code Numeric code representing the decade of the film’s release
  • 136.93 KB
  • 1794 rows
  • 15 columns
year

Year

imdb

Imdb

title

Title

test

Test

clean_test

Clean Test

binary

Binary

budget

Budget

domgross

Domgross

intgross

Intgross

code

Code

budget_2013

Budget 2013$

domgross_2013

Domgross 2013$

intgross_2013

Intgross 2013$

period_code

Period Code

decade_code

Decade Code

2013tt171142521 & OvernotalknotalkFAIL1300000025682380421957662013FAIL13000000256823804219576611
2012tt1343727Dredd 3Dok-disagreeokPASS4500000013414714408689942012PASS45658735136110864146725711
2013tt202454412 Years a Slavenotalk-disagreenotalkFAIL20000000531070351586070352013FAIL200000005310703515860703511
2013tt12728782 GunsnotalknotalkFAIL61000000756124601324930152013FAIL610000007561246013249301511
2013tt045356242menmenFAIL4000000095020213950202132013FAIL40000000950202139502021311
2013tt133597547 RoninmenmenFAIL225000000383624751458038422013FAIL2250000003836247514580384211
2013tt1606378A Good Day to Die HardnotalknotalkFAIL92000000673491983042491982013FAIL920000006734919830424919811
2013tt2194499About Timeok-disagreeokPASS1200000015323921873247462013PASS12000000153239218732474611
2013tt1814621AdmissionokokPASS1300000018007317180073172013PASS13000000180073171800731711
2013tt1815862After EarthnotalknotalkFAIL130000000605220972443731982013FAIL1300000006052209724437319811

CREATE TABLE movies (
  "year" BIGINT,
  "imdb" VARCHAR,
  "title" VARCHAR,
  "test" VARCHAR,
  "clean_test" VARCHAR,
  "binary" VARCHAR,
  "budget" BIGINT,
  "domgross" VARCHAR,
  "intgross" VARCHAR,
  "code" VARCHAR,
  "budget_2013" BIGINT,
  "domgross_2013" VARCHAR,
  "intgross_2013" VARCHAR,
  "period_code" DOUBLE,
  "decade_code" DOUBLE
);

Share link

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