{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import pandas as pd" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'1.0.3'" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.__version__" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "film_scripts = pd.read_csv('pudding_public_scripts.csv')" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "# help(pd.read_csv)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "pandas.core.frame.DataFrame" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "type(film_scripts)" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
imdb_idscript_idtitleyeargross (inflation-adjusted)link
0tt00197774031The Cocoanuts1929NaNhttp://www.pages.drexel.edu/~ina22/splaylib/Sc...
1tt00218848521Frankenstein1931298.0Frankenstein (Florey & Fort) [1931-5-23] [Scan...
2tt00220541086The Last Flight1931NaNfilm_20100519/all_imsdb_05_19_10/Last-Flight,-...
3tt00226261631American Madness1932NaNhttp://www.imsdb.com/Movie Scripts/American Ma...
4tt00229582438Grand Hotel1932NaNhttp://www.imsdb.com/Movie Scripts/Grand Hotel...
.....................
1995tt37337788533Pay the Ghost2015NaNPay The Ghost (Dan Kay, 9-1-09).pdf
1996tt38083425499Son of Saul20150.0http://gointothestory.blcklst.com/wp-content/u...
1997tt38502148056Dope201518.0Dope (2013.10.31) [Digital].pdf
1998tt38590765507Truth20152.0http://gointothestory.blcklst.com/wp-content/u...
1999tt42705165410Grandma20157.0http://gointothestory.blcklst.com/wp-content/u...
\n", "

2000 rows × 6 columns

\n", "
" ], "text/plain": [ " imdb_id script_id title year \\\n", "0 tt0019777 4031 The Cocoanuts 1929 \n", "1 tt0021884 8521 Frankenstein 1931 \n", "2 tt0022054 1086 The Last Flight 1931 \n", "3 tt0022626 1631 American Madness 1932 \n", "4 tt0022958 2438 Grand Hotel 1932 \n", "... ... ... ... ... \n", "1995 tt3733778 8533 Pay the Ghost 2015 \n", "1996 tt3808342 5499 Son of Saul 2015 \n", "1997 tt3850214 8056 Dope 2015 \n", "1998 tt3859076 5507 Truth 2015 \n", "1999 tt4270516 5410 Grandma 2015 \n", "\n", " gross (inflation-adjusted) \\\n", "0 NaN \n", "1 298.0 \n", "2 NaN \n", "3 NaN \n", "4 NaN \n", "... ... \n", "1995 NaN \n", "1996 0.0 \n", "1997 18.0 \n", "1998 2.0 \n", "1999 7.0 \n", "\n", " link \n", "0 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "1 Frankenstein (Florey & Fort) [1931-5-23] [Scan... \n", "2 film_20100519/all_imsdb_05_19_10/Last-Flight,-... \n", "3 http://www.imsdb.com/Movie Scripts/American Ma... \n", "4 http://www.imsdb.com/Movie Scripts/Grand Hotel... \n", "... ... \n", "1995 Pay The Ghost (Dan Kay, 9-1-09).pdf \n", "1996 http://gointothestory.blcklst.com/wp-content/u... \n", "1997 Dope (2013.10.31) [Digital].pdf \n", "1998 http://gointothestory.blcklst.com/wp-content/u... \n", "1999 http://gointothestory.blcklst.com/wp-content/u... \n", "\n", "[2000 rows x 6 columns]" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
imdb_idscript_idtitleyeargross (inflation-adjusted)link
0tt00197774031The Cocoanuts1929NaNhttp://www.pages.drexel.edu/~ina22/splaylib/Sc...
1tt00218848521Frankenstein1931298.0Frankenstein (Florey & Fort) [1931-5-23] [Scan...
2tt00220541086The Last Flight1931NaNfilm_20100519/all_imsdb_05_19_10/Last-Flight,-...
3tt00226261631American Madness1932NaNhttp://www.imsdb.com/Movie Scripts/American Ma...
4tt00229582438Grand Hotel1932NaNhttp://www.imsdb.com/Movie Scripts/Grand Hotel...
\n", "
" ], "text/plain": [ " imdb_id script_id title year gross (inflation-adjusted) \\\n", "0 tt0019777 4031 The Cocoanuts 1929 NaN \n", "1 tt0021884 8521 Frankenstein 1931 298.0 \n", "2 tt0022054 1086 The Last Flight 1931 NaN \n", "3 tt0022626 1631 American Madness 1932 NaN \n", "4 tt0022958 2438 Grand Hotel 1932 NaN \n", "\n", " link \n", "0 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "1 Frankenstein (Florey & Fort) [1931-5-23] [Scan... \n", "2 film_20100519/all_imsdb_05_19_10/Last-Flight,-... \n", "3 http://www.imsdb.com/Movie Scripts/American Ma... \n", "4 http://www.imsdb.com/Movie Scripts/Grand Hotel... " ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts.head()" ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
imdb_idscript_idtitleyeargross (inflation-adjusted)link
716tt01186043838An American Werewolf in Paris199750.0http://www.dailyscript.com/scripts/American+We...
1605tt1190080150920122009192.0http://www.imsdb.com/Movie Scripts/2012 Script...
1730tt14778555416Hyde Park on Hudson20126.0http://gointothestory.blcklst.com/wp-content/u...
1261tt04052966822A Scanner Darkly20067.0A Scanner Darkly [kaufman].pdf
45tt00465345197The War of the Worlds1953NaNhttp://www.scifiscripts.com/scripts/WARWORLDS.txt
\n", "
" ], "text/plain": [ " imdb_id script_id title year \\\n", "716 tt0118604 3838 An American Werewolf in Paris 1997 \n", "1605 tt1190080 1509 2012 2009 \n", "1730 tt1477855 5416 Hyde Park on Hudson 2012 \n", "1261 tt0405296 6822 A Scanner Darkly 2006 \n", "45 tt0046534 5197 The War of the Worlds 1953 \n", "\n", " gross (inflation-adjusted) \\\n", "716 50.0 \n", "1605 192.0 \n", "1730 6.0 \n", "1261 7.0 \n", "45 NaN \n", "\n", " link \n", "716 http://www.dailyscript.com/scripts/American+We... \n", "1605 http://www.imsdb.com/Movie Scripts/2012 Script... \n", "1730 http://gointothestory.blcklst.com/wp-content/u... \n", "1261 A Scanner Darkly [kaufman].pdf \n", "45 http://www.scifiscripts.com/scripts/WARWORLDS.txt " ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts.sample(5)" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(2000, 6)" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts.shape" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "imdb_id object\n", "script_id int64\n", "title object\n", "year int64\n", "gross (inflation-adjusted) float64\n", "link object\n", "dtype: object" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts.dtypes" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0 http://www.pages.drexel.edu/~ina22/splaylib/Sc...\n", "1 Frankenstein (Florey & Fort) [1931-5-23] [Scan...\n", "2 film_20100519/all_imsdb_05_19_10/Last-Flight,-...\n", "3 http://www.imsdb.com/Movie Scripts/American Ma...\n", "4 http://www.imsdb.com/Movie Scripts/Grand Hotel...\n", " ... \n", "1995 Pay The Ghost (Dan Kay, 9-1-09).pdf\n", "1996 http://gointothestory.blcklst.com/wp-content/u...\n", "1997 Dope (2013.10.31) [Digital].pdf\n", "1998 http://gointothestory.blcklst.com/wp-content/u...\n", "1999 http://gointothestory.blcklst.com/wp-content/u...\n", "Name: link, Length: 2000, dtype: object" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts['link'] # same as film_scripts.link" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
link
0http://www.pages.drexel.edu/~ina22/splaylib/Sc...
1Frankenstein (Florey & Fort) [1931-5-23] [Scan...
2film_20100519/all_imsdb_05_19_10/Last-Flight,-...
3http://www.imsdb.com/Movie Scripts/American Ma...
4http://www.imsdb.com/Movie Scripts/Grand Hotel...
......
1995Pay The Ghost (Dan Kay, 9-1-09).pdf
1996http://gointothestory.blcklst.com/wp-content/u...
1997Dope (2013.10.31) [Digital].pdf
1998http://gointothestory.blcklst.com/wp-content/u...
1999http://gointothestory.blcklst.com/wp-content/u...
\n", "

2000 rows × 1 columns

\n", "
" ], "text/plain": [ " link\n", "0 http://www.pages.drexel.edu/~ina22/splaylib/Sc...\n", "1 Frankenstein (Florey & Fort) [1931-5-23] [Scan...\n", "2 film_20100519/all_imsdb_05_19_10/Last-Flight,-...\n", "3 http://www.imsdb.com/Movie Scripts/American Ma...\n", "4 http://www.imsdb.com/Movie Scripts/Grand Hotel...\n", "... ...\n", "1995 Pay The Ghost (Dan Kay, 9-1-09).pdf\n", "1996 http://gointothestory.blcklst.com/wp-content/u...\n", "1997 Dope (2013.10.31) [Digital].pdf\n", "1998 http://gointothestory.blcklst.com/wp-content/u...\n", "1999 http://gointothestory.blcklst.com/wp-content/u...\n", "\n", "[2000 rows x 1 columns]" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts[['link']]" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
imdb_idscript_idtitleyeargross (inflation-adjusted)link
0tt00197774031The Cocoanuts1929NaNhttp://www.pages.drexel.edu/~ina22/splaylib/Sc...
1tt00218848521Frankenstein1931298.0Frankenstein (Florey & Fort) [1931-5-23] [Scan...
2tt00220541086The Last Flight1931NaNfilm_20100519/all_imsdb_05_19_10/Last-Flight,-...
3tt00226261631American Madness1932NaNhttp://www.imsdb.com/Movie Scripts/American Ma...
4tt00229582438Grand Hotel1932NaNhttp://www.imsdb.com/Movie Scripts/Grand Hotel...
\n", "
" ], "text/plain": [ " imdb_id script_id title year gross (inflation-adjusted) \\\n", "0 tt0019777 4031 The Cocoanuts 1929 NaN \n", "1 tt0021884 8521 Frankenstein 1931 298.0 \n", "2 tt0022054 1086 The Last Flight 1931 NaN \n", "3 tt0022626 1631 American Madness 1932 NaN \n", "4 tt0022958 2438 Grand Hotel 1932 NaN \n", "\n", " link \n", "0 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "1 Frankenstein (Florey & Fort) [1931-5-23] [Scan... \n", "2 film_20100519/all_imsdb_05_19_10/Last-Flight,-... \n", "3 http://www.imsdb.com/Movie Scripts/American Ma... \n", "4 http://www.imsdb.com/Movie Scripts/Grand Hotel... " ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts[0:5]" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
linktitle
0http://www.pages.drexel.edu/~ina22/splaylib/Sc...The Cocoanuts
1Frankenstein (Florey & Fort) [1931-5-23] [Scan...Frankenstein
2film_20100519/all_imsdb_05_19_10/Last-Flight,-...The Last Flight
3http://www.imsdb.com/Movie Scripts/American Ma...American Madness
4http://www.imsdb.com/Movie Scripts/Grand Hotel...Grand Hotel
.........
1995Pay The Ghost (Dan Kay, 9-1-09).pdfPay the Ghost
1996http://gointothestory.blcklst.com/wp-content/u...Son of Saul
1997Dope (2013.10.31) [Digital].pdfDope
1998http://gointothestory.blcklst.com/wp-content/u...Truth
1999http://gointothestory.blcklst.com/wp-content/u...Grandma
\n", "

2000 rows × 2 columns

\n", "
" ], "text/plain": [ " link title\n", "0 http://www.pages.drexel.edu/~ina22/splaylib/Sc... The Cocoanuts\n", "1 Frankenstein (Florey & Fort) [1931-5-23] [Scan... Frankenstein\n", "2 film_20100519/all_imsdb_05_19_10/Last-Flight,-... The Last Flight\n", "3 http://www.imsdb.com/Movie Scripts/American Ma... American Madness\n", "4 http://www.imsdb.com/Movie Scripts/Grand Hotel... Grand Hotel\n", "... ... ...\n", "1995 Pay The Ghost (Dan Kay, 9-1-09).pdf Pay the Ghost\n", "1996 http://gointothestory.blcklst.com/wp-content/u... Son of Saul\n", "1997 Dope (2013.10.31) [Digital].pdf Dope\n", "1998 http://gointothestory.blcklst.com/wp-content/u... Truth\n", "1999 http://gointothestory.blcklst.com/wp-content/u... Grandma\n", "\n", "[2000 rows x 2 columns]" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts[['link', 'title']]" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "\n" ] } ], "source": [ "print(type(film_scripts['link']))\n", "print(type(film_scripts[['link']]))" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Cocoanuts,_The.pdf',\n", " 'Frankenstein (Florey & Fort) [1931-5-23] [Scan].pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Last-Flight,-The.html',\n", " 'http://www.imsdb.com/Movie Scripts/American Madness Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Grand Hotel Script.html',\n", " 'http://www.aellea.com/emruf3/tip.html',\n", " 'http://www.aellea.com/scripts/WHAT.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Duck-Soup.html',\n", " 'King Kong - 1933 Orig. (Includes End Notes) (Digital).pdf',\n", " 'http://www.aellea.com/script/qWAX.htm',\n", " 'http://www.dailyscript.com/scripts/thethinman.html',\n", " 'http://www.aellea.com/emruf3/tm.html',\n", " 'http://www.imsdb.com/Movie Scripts/Mr Deeds Goes to Town Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Lost Horizon Script.html',\n", " 'http://www.dailyscript.com/scripts/Mr%20Smith%20Goes%20To%20Washington.txt',\n", " 'http://www.dailyscript.com/scripts/Ninotchka.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Wizard-of-Oz,-The.html',\n", " 'http://www.imsdb.com/Movie Scripts/Grapes of Wrath, The Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/His-Girl-Friday.html',\n", " 'film_20100519/all_imsdb_05_19_10/Citizen-Kane.html',\n", " 'Dr. Jekyll and Mr. Hyde (John Lee Mahin) (Shooting Script - 1941).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Meet John Doe Script.html',\n", " \"Sullivan's Travels.pdf\",\n", " 'film_20100519/all_imsdb_05_19_10/Kate-&-Leopold.html',\n", " 'http://www.dailyscript.com/scripts/i-walked_with_a_zombie.html',\n", " 'http://www.dailyscript.com/scripts/theleopardman.htm',\n", " 'http://www.dailyscript.com/scripts/SeventhVictim.htm',\n", " 'http://www.dailyscript.com/scripts/cursecat.htm',\n", " 'film_20100519/all_imsdb_05_19_10/Double-Indemnity.html',\n", " 'film_20100519/all_imsdb_05_19_10/Tall-in-the-Saddle.html',\n", " 'http://www.dailyscript.com/scripts/TheBodySnatcher.htm',\n", " 'http://www.dailyscript.com/scripts/isleofthedead.htm',\n", " 'Lost Weekend (1945).pdf',\n", " 'http://www.aellea.com/script/itsawonderfullife.txt',\n", " 'http://www.dailyscript.com/scripts/call_northside_777-1.pdf',\n", " 'Lady From Shanghai (Orson Welles) (Final Draft - 8-17-1946).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Mr Blandings Builds His Dream House Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Station-West.html',\n", " 'film_20100519/all_imsdb_05_19_10/Roughshod.html',\n", " 'She Wore a Yellow Ribbon - 1948-10-16 - Shooting script.pdf',\n", " 'https://www.dropbox.com/sh/jpxh25l44yke4np/AAAPTEZGOIBNJa5WHGGYrsOZa/THIRD%20MAN%2C%20THE%20%281949%29%20Graham%20Greene.pdf?dl=0',\n", " 'http://www.dailyscript.com/scripts/sunset_bld_3_21_49.html',\n", " 'film_20100519/all_imsdb_05_19_10/Day-the-Earth-Stood-Still,-The.html',\n", " 'Julius Caesar - 1952-07-07 - Draft.pdf',\n", " 'http://www.dailyscript.com/scripts/Stalag%2017.txt',\n", " 'http://www.scifiscripts.com/scripts/WARWORLDS.txt',\n", " 'http://www.dailyscript.com/scripts/onthewaterfront.html',\n", " 'http://www.imsdb.com/Movie Scripts/Rear Window Script.html',\n", " 'http://www.aellea.com/script/salt.txt',\n", " 'Seven Samurai (Akira Kurosawa & Shinobu Hashimoto & Hideo Oguni) (Translated by Donald Richie).pdf',\n", " 'film_20100519/all_imsdb_05_19_10/White-Christmas.html',\n", " 'http://www.imsdb.com/Movie Scripts/Bad Day at Black Rock Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Man Who Knew Too Much, The Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Searchers, The Script.html',\n", " 'http://www.dailyscript.com/scripts/an_affair_to_remember.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Seventh-Seal,-The.html',\n", " 'film_20100519/all_imsdb_05_19_10/Sweet-Smell-of-Success.html',\n", " 'Witness for the Prosecution (1957.06.10).pdf',\n", " 'https://www.dropbox.com/sh/jpxh25l44yke4np/AABv8zPog9rCXAWrYZrOGSria/TOUCH%20OF%20EVIL%20%281958%29%20Orson%20Welles%20%5B1957-02-05%5D.pdf?dl=0',\n", " 'http://www.dailyscript.com/scripts/vertigo.html',\n", " 'http://indiegroundfilms.files.wordpress.com/2013/08/anatomy-of-a-murder-feb25-59-final-numbered.pdf',\n", " 'NorthByNorthwest.pdf',\n", " 'http://www.fpx.de/fp/Disney/Scripts/SleepingBeauty/sb.html',\n", " 'http://www.aellea.com/script/somelikeithot_script.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Apartment, The Script.html',\n", " \"film_20100519/all_imsdb_05_19_10/Avventura,-L'-(The-Adventure).html\",\n", " 'film_20100519/all_imsdb_05_19_10/Peeping-Tom.html',\n", " 'film_20100519/all_imsdb_05_19_10/Psycho.html',\n", " 'film_20100519/all_imsdb_05_19_10/Orgy-of-the-Dead.html',\n", " 'http://www.dailyscript.com/scripts/Hustler,+The.txt',\n", " 'http://www.aellea.com/script/viridiana.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Birds, The Script.html',\n", " 'http://www.aellea.com/emruf3/nbam.html',\n", " 'http://www.imsdb.com/Movie Scripts/Battle of Algiers, The Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Cincinnati-Kid,-The.html',\n", " 'http://www.scifiscripts.com/scripts/fantasticvoyager.txt',\n", " 'Harper (1966) [1965-6-9] [Rev. Final] [Scan].pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Bonnie and Clyde Script.html',\n", " 'http://www.aellea.com/script/cool_hand_luke.html',\n", " 'El Dorado.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Graduate, The Script.html',\n", " 'http://www.cubbi.org/disney/scripts/tjb.txt',\n", " 'film_20100519/all_imsdb_05_19_10/2001-A-Space-Odyssey.html',\n", " 'film_20100519/all_imsdb_05_19_10/Petulia.html',\n", " 'http://www.scifiscripts.com/scripts/planetofapes67.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Midnight Cowboy Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Wild-Bunch,-The.html',\n", " 'http://pota.goatley.com/scripts/pota_beneath_final.pdf',\n", " 'Catch 22.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Five-Easy-Pieces.html',\n", " 'MASH.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Private Life of Sherlock Holmes, The Script.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Rise_and_Rise_of_Michael_Rimmer,_The.pdf',\n", " 'http://www.dailyscript.com/scripts/thx1138.html',\n", " 'http://www.horrorlair.com/scripts/clockwork_orange.html',\n", " 'Duel (Richard Matheson) (Revision; September 1, 1971).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/French Connection, The Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Happy-Birthday,-Wanda-June.html',\n", " 'http://www.dailyscript.com/scripts/Harold-and-Maude.htm',\n", " 'film_20100519/all_imsdb_05_19_10/Hospital,-The.html',\n", " 'http://www.dailyscript.com/scripts/klute.html',\n", " 'http://www.dailyscript.com/scripts/i_am_legend_6_26_70.html',\n", " 'Play Misty For Me (Jo Heims & Dean Riesner - Missing Title Page - Undated) [Scan] [Reduced].pdf',\n", " 'Two Lane Blacktop (1970.01.05) [Scan].pdf',\n", " 'VanishingPoint-GCain 1st draft-June1969.pdf',\n", " 'http://www.horrorlair.com/scripts/willard.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Cabaret.pdf',\n", " 'http://pota.goatley.com/scripts/pota_conquest_finalshooting.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Day-the-Clown-Cried,-The.html',\n", " 'http://www.dailyscript.com/scripts/deliverance.pdf',\n", " 'http://www.dailyscript.com/scripts/getaway.html',\n", " 'http://www.awesomefilm.com/script/THEGODFATHER.txt',\n", " 'Jeremiah Johnson [Undated] [Scan].pdf',\n", " 'http://www.scifiscripts.com/scripts/Poseidon_Adventure.pdf',\n", " 'http://www.aellea.com/script/sounder.txt',\n", " 'film_20100519/all_imsdb_05_19_10/American-Graffiti.html',\n", " 'http://www.imsdb.com/Movie Scripts/Badlands Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Dark Star Script.html',\n", " 'Enter The Dragon (1973) [1972-12-7] [Rev. 1972-12-19] [Scan].pdf',\n", " 'http://www.horrorlair.com/scripts/exorcist.html',\n", " 'Live And Let Die (1972.10.02) [Scan].pdf',\n", " 'Long_Goodbye,_The_(1972).pdf',\n", " 'Magnum Force [1973.03.05] [Rev. Final] [Scan].pdf',\n", " 'http://www.dailyscript.com/scripts/meanstreet.html',\n", " 'Pat Garret And Billy The Kid.pdf',\n", " 'Serpico [1973.06.18].pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Sting,-The.html',\n", " 'http://www.imsdb.com/Movie Scripts/Last Tango in Paris Script.html',\n", " 'Blazing Saddles - Screenplay.pdf',\n", " 'http://www.awesomefilm.com/script/chinatown.txt',\n", " 'http://www.dailyscript.com/scripts/godfather2.html',\n", " 'http://www.dailyscript.com/scripts/The_Parallax_View_-_Original_Draft.pdf',\n", " 'http://www.horrorlair.com/scripts/young.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Barry-Lyndon.html',\n", " 'film_20100519/all_imsdb_05_19_10/Dog-Day-Afternoon.html',\n", " 'French Connection 2 (1975) [1974-6-26] [Scan].pdf',\n", " 'Hard Times.pdf',\n", " 'http://www.dailyscript.com/scripts/Jaws.txt',\n", " 'http://www.dailyscript.com/scripts/mandingo1.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Nashville Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Rocky-Horror-Picture-Show,-The.html',\n", " 'http://www.imsdb.com/Movie Scripts/Shampoo Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Shivers.html',\n", " 'Stepford Wives.pdf',\n", " 'http://www.awesomefilm.com/script/ThreeDaysoftheCondor.pdf',\n", " 'Wind and the Lion, The [Scan].pdf',\n", " 'Yakuza, The - Schrader - p.56&88.pdf',\n", " \"ALL THE PRESIDENT'S MEN - 1975.03 draft by William Goldman.1.pdf\",\n", " 'Family Plot (Missing pages 91,130,136).pdf',\n", " 'http://www.dailyscript.com/scripts/Logans+Run.txt',\n", " 'http://sfy.ru/sfy.html?script=network',\n", " 'Obsession_011775.pdf',\n", " 'Outlaw Josey Wales, The (1975.09.10).pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Rocky.html',\n", " 'Seven Per-Cent Solution, The.pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Silver_Streak.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Taxi Driver Script.html',\n", " 'three women-treatment.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Annie-Hall.html',\n", " 'GOODBYE GIRL, THE (1977) by Neil Simon [1976.12] [3rd] [Scan].pdf',\n", " 'Rabid.pdf',\n", " 'ROLLING THUNDER (1977) by Paul Schrader.pdf',\n", " 'http://www.dailyscript.com/scripts/Smokey%20And%20The%20Bandit.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Star-Wars-A-New-Hope.html',\n", " 'Capricorn_One.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Days-of-Heaven.html',\n", " 'film_20100519/all_imsdb_05_19_10/Deer-Hunter,-The.html',\n", " 'Walter Hill\\x92s screenplay for The Driver.pdf',\n", " 'Halloween-Carpenter&Hill(1978).pdf',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/the-hills-have-eyes-1976-numbered.pdf',\n", " 'http://www.horrorlair.com/scripts/jaws2_revised_final_draft.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Midnight-Express.html',\n", " 'Unmarried Woman, An.pdf',\n", " 'http://www.dailyscript.com/scripts/alien_shooting.html',\n", " 'http://www.imsdb.com/Movie Scripts/Apocalypse Now Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Being There Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Breaking Away Script.html',\n", " 'http://www.dailyscript.com/scripts/theelectrichorseman.pdf',\n", " 'Escape From Alcatraz.pdf',\n", " 'Hanover Street (1977.07).pdf',\n", " 'http://www.dailyscript.com/scripts/Hardcore.txt',\n", " 'Hot Stuff (1979).pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Jerk,_The.pdf',\n", " 'http://www.awesomefilm.com/script/kramerVsKramer.txt',\n", " 'NORMA RAE by Irving Ravetch and Harriet Frank, Jr..pdf',\n", " 'OLD BOYFRIENDS (1979) 1977.12.12 draft by Paul Schrader and Leonard Schrader and Joan Tewkesbury.pdf',\n", " 'Rocky ll [10-25-1978] [Scan].pdf',\n", " 'http://www.dailyscript.com/scripts/startrek01.html',\n", " 'Time After Time.pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Nine_to_Five.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Airplane.html',\n", " 'American Gigolo (1980).pdf',\n", " 'Caddyshack.pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Coal_Miner%27s_Daughter.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Elephant-Man,-The.html',\n", " 'http://www.scifiscripts.com/scripts/esb_final.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Flash Gordon Script.html',\n", " 'http://www.horrorlair.com/scripts/Friday1.txt',\n", " 'GLORIA (1980) by John Cassavetes [5th draft rev. 1979.09.24].pdf',\n", " 'Kagemusha (Akira Kurosawa & Masato Ide).pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Melvin_and_Howard.pdf',\n", " 'Motel Hell (1980) [5-19-1980].pdf',\n", " 'My Bodyguard (1980).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Ordinary People Script.html',\n", " 'Private Benjamin (11-20-79).pdf',\n", " 'Prom Night (1980).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Raging Bull Script.html',\n", " 'Scanners.pdf',\n", " 'Seems Like Old Times.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Shining, The Script.html',\n", " 'http://www.dailyscript.com/scripts/somewhereintime.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Stuntman, The Script.html',\n", " 'http://www.scifiscripts.com/scripts/superman_II_shoot.txt',\n", " 'film_20100519/all_imsdb_05_19_10/American-Werewolf-in-London.html',\n", " 'http://www.imsdb.com/Movie Scripts/Arthur Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Body Heat Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Dragonslayer.html',\n", " 'http://www.imsdb.com/Movie Scripts/Escape From New York Script.html',\n", " 'For Your Eyes Only_Reduced.pdf',\n", " 'Ghost Story (1981).pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Great_Muppet_Caper.pdf',\n", " 'Halloween 2 (1981) [1981-3-12] [Shoot.] [Scan].pdf',\n", " 'http://movie-scripts.net/H/Howling_The.pdf',\n", " 'Modern Problems (1981).pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-On_Golden_Pond.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Indiana-Jones-and-the-Raiders-of-the-Lost-Ark.html',\n", " 'http://www.dailyscript.com/scripts/thief.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/48 Hrs. Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Airplane-2-The-Sequel.html',\n", " 'http://www.imsdb.com/Movie Scripts/Blade Runner Script.html',\n", " 'Creepshow (1979) [Scan].pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Diner Script.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Evil_Under_the_Sun.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Fast-Times-at-Ridgemont-High.html',\n", " 'http://www.imsdb.com/Movie Scripts/Frances Script.html',\n", " 'http://www.horrorlair.com/scripts/friday13th3.txt',\n", " 'http://www.dailyscript.com/scripts/Gandhi.txt',\n", " 'http://www.dailyscript.com/scripts/Officer+And+A+Gentleman,+An.txt',\n", " 'Rocky III [2-26-1981] [Scan].pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Shoot_the_Moon.pdf',\n", " 'Star Trek II - The Wrath of Khan.pdf',\n", " 'Tootsie.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/TRON.html',\n", " 'http://www.imsdb.com/Movie Scripts/Verdict, The Script.html',\n", " 'CHRISTINE (1983) by Bill Phillips [1983.02.16] [Scan].pdf',\n", " 'CUJO by Stephen King (1st Draft) [scan].pdf',\n", " 'http://www.horrorlair.com/scripts/jaws3_1st_draft.txt',\n", " 'KEEP, THE (1983) [1982-04-13] Michael Mann - First Draft.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/King-of-Comedy,-The.html',\n", " 'Local Hero (1981.11).pdf',\n", " 'Octopussy8.19.82Draft.pdf',\n", " 'Outsiders, The.pdf',\n", " 'http://www.dailyscript.com/scripts/ploughmans_lunch.html',\n", " 'Psycho 2 (1983) [1982-7-19] [Scan].pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Star-Wars-Return-of-the-Jedi.html',\n", " 'Risky Business.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Scarface.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Something_Wicked This Way_Comes.pdf',\n", " 'http://www.scifiscripts.com/scripts/superman3_script.txt',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Tender_Mercies.pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Terms_of_Endearment.pdf',\n", " 'Trading Places (1982.07).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Under Fire Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Adventures-of-Buckaroo-Banzai-Across-the-Eighth-Dimension,-The.html',\n", " 'film_20100519/all_imsdb_05_19_10/Amadeus.html',\n", " 'film_20100519/all_imsdb_05_19_10/Bachelor-Party.html',\n", " 'http://www.dailyscript.com/scripts/blood_simple.html',\n", " 'childrenofthecorn.pdf',\n", " 'CHOOSE ME (1984) by Alan Rudolph [Undated] [Scan].pdf',\n", " 'City Heat (1984.04.06) [Scan].pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Dune.html',\n", " 'Firestarter.pdf',\n", " 'GHOSTBUSTERS - 1983.10.07 revision by Harold Ramis & Dan Aykroyd.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Gremlins.html',\n", " 'film_20100519/all_imsdb_05_19_10/Indiana-Jones-and-the-Temple-of-Doom.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Karate_Kid,_The_%281983%29.pdf',\n", " 'Moscow On The Hudson.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Nightmare-on-Elm-Street,-A.html',\n", " 'https://www.dropbox.com/sh/jpxh25l44yke4np/AAAk9C7n82L7RRrUqm4yHVZxa/ONCE%20UPON%20A%20TIME%20IN%20AMERICA%20%281984%29%20Sergio%20Leone%20%26%20Others%20%5BEnglish%20Translation%20by%20David%20Mills%5D.pdf?dl=0',\n", " 'film_20100519/all_imsdb_05_19_10/Purple-Rain.html',\n", " 'film_20100519/all_imsdb_05_19_10/Repo-Man.html',\n", " 'Sixteen Candles [John Hughes] [06.22.83] [scan].pdf',\n", " 'http://www.scifiscripts.com/scripts/Trek/Star_Trek_III.htm',\n", " 'film_20100519/all_imsdb_05_19_10/Starman.html',\n", " 'http://www.imsdb.com/Movie Scripts/Supergirl Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Terminator Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Agnes of God Script.html',\n", " 'BACK TO THE FUTURE (1985) Robert Zemeckis & Bob Gale [1984-10-12][4th].pdf',\n", " 'http://www.scifiscripts.com/cartoon/blackcauldron.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Brazil.html',\n", " 'http://www.imsdb.com/Movie Scripts/Breakfast Club, The Script.html',\n", " 'http://www.awesomefilm.comscript/clue.html',\n", " 'film_20100519/all_imsdb_05_19_10/Code-of-Silence.html',\n", " 'film_20100519/all_imsdb_05_19_10/Day-of-the-Dead.html',\n", " 'film_20100519/all_imsdb_05_19_10/Fletch.html',\n", " 'Into the Night.pdf',\n", " 'http://www.dailyscript.com/scripts/KissOfTheSpiderWoman.pdf',\n", " 'http://www.angelfire.com/movies/ridleyscott/script/LegendOfDarkness.txt',\n", " 'lost_in_america.pdf',\n", " 'Mala-Noche-1985-Draft-Script.pdf',\n", " \"NIGHTMARE ON ELMS STREET 2 - FREDDY'S REVENGE by David Chaskin.pdf\",\n", " 'film_20100519/all_imsdb_05_19_10/Rambo-First-Blood-II-The-Mission.html',\n", " 'film_20100519/all_imsdb_05_19_10/Real-Genius.html',\n", " 'film_20100519/all_imsdb_05_19_10/Silver-Bullet.html',\n", " 'http://www.dailyscript.com/scripts/Silverado.txt',\n", " \"http://www.imsdb.com/Movie Scripts/St. Elmo's Fire Script.html\",\n", " 'Weird Science [John Hughes] [09.24.84] [Rev. Final] [Scan].pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Witness.html',\n", " 'http://www.imsdb.com/Movie Scripts/Aliens Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Blue Velvet Script.html',\n", " 'Down And Out In Beverly Hills (aka Jerry Saved From Drowning) [Scan].pdf',\n", " \"film_20100519/all_imsdb_05_19_10/Ferris-Bueller's-Day-Off.html\",\n", " 'http://www.horrorlair.com/scripts/friday13th6.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Hannah and Her Sisters Script.html',\n", " 'http://www.scifiscripts.com/scripts/Highlander_final.txt',\n", " \"Jumpin' Jack Flash (1986.01.13).pdf\",\n", " 'film_20100519/all_imsdb_05_19_10/Manhunter.html',\n", " 'Maximum Overdrive.pdf',\n", " 'MOSQUITO COAST, THE (1986) by Paul Schrader.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Peggy-Sue-Got-Married.html',\n", " 'http://www.imsdb.com/Movie Scripts/Platoon Script.html',\n", " 'http://www.dailyscript.com/scripts/A_Room_With_A_View.pdf',\n", " 'Running%20Scared.pdf',\n", " 'Frye, E. Max - Something Wild.pdf',\n", " 'http://www.moviescriptsandscreenplays.com/johncusack/scripts/standbyme.txt',\n", " 'http://www.scifiscripts.com/scripts/Trek/Star_Trek_IV.htm',\n", " 'http://www.imsdb.com/Movie Scripts/Top Gun Script.html',\n", " 'http://www.dailyscript.com/scripts/bigeasy.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Broadcast News Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Full Metal Jacket Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Hellraiser Script.html',\n", " 'http://www.dailyscript.com/scripts/hopeandglory.html',\n", " 'House of Games.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Innerspace Script.html',\n", " 'http://www.horrorlair.com/scripts/jaws_the_revenge.txt',\n", " 'LA BAMBA (1987) (aka LA BAMBA!) by Luis Valdez [1985.12.06] [2nd] [Scan].pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Lethal Weapon Script.html',\n", " 'LIGHT OF DAY (1987) 1985.11.20 draft by Paul Schrader.pdf',\n", " 'http://www.dailyscript.com/scripts/TheLostBoys.htm',\n", " 'http://www.imsdb.com/Movie Scripts/Moonstruck Script.html',\n", " 'http://www.dailyscript.com/scripts/NearDark.pdf',\n", " 'http://www.horrorlair.com/scripts/nightmare_on_elm_street3.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Predator.html',\n", " 'Prince of Darkness (John Carpenter as Martin Quatermass, Revised Shooting Draft, 4-25-87).pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Princess-Bride,-The.html',\n", " 'RAISING ARIZONA by Ethan & Joel Coen.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Someone To Watch Over Me Script.html',\n", " 'http://www.awesomefilm.comscript/spcballs.txt',\n", " 'http://www.scifiscripts.com/scripts/superman_IV.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Three-Men-and-a-Baby.html',\n", " 'film_20100519/all_imsdb_05_19_10/Tin-Men.html',\n", " 'http://www.imsdb.com/Movie Scripts/Wall Street Script.html',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/witches-of-eastwick-the-may-1986-numbered-revised-2nd.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Above-the-Law.html',\n", " 'film_20100519/all_imsdb_05_19_10/Alien-Nation.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Beaches.pdf',\n", " 'http://www.dailyscript.com/scripts/beetlejuice_skaaren_.html',\n", " 'http://www.imsdb.com/Movie Scripts/Big Script.html',\n", " 'Blob, The (1988).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Bull Durham Script.html',\n", " 'Coming To America (aka The Quest) (1987.09.02).pdf',\n", " 'CRITTERS 2 (1988) (aka CALL OF THE CRITTERS) by David Twohy (aka D.T. Twohy) (Rev. - Mick Garris) [1987.10.13] [3rd].pdf',\n", " 'Dead Ringers.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Die Hard Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Big Blue, The Script.html',\n", " 'GREAT OUTDOORS, THE by John Hughes [10.18.1987].pdf',\n", " 'http://www.horrorlair.com/scripts/halloween4.txt',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Last_Temptation_Of_Christ.pdf',\n", " 'http://www.dailyscript.com/scripts/A-Nightmare-on-Elm-Street-4.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Cinema Paradiso Script.html',\n", " 'Red Heat (1987.08.17).pdf',\n", " 'They Live (John Carpenter as Frank Armitage, Shooting Script, Rev. 2-10-88).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Twins Script.html',\n", " 'http://www.dailyscript.com/scripts/roger-rabbit.html',\n", " 'http://www.imsdb.com/Movie Scripts/Willow Script.html',\n", " 'http://www.awesomefilm.comscript/workinggirl.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Abyss, The Script.html',\n", " 'http://www.scifiscripts.com/scripts/back_to_the_future_2_3.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Batman.html',\n", " 'film_20100519/all_imsdb_05_19_10/Black-Rain.html',\n", " 'Born on the Fourth of July (June 1978 Draft) (scanned).pdf',\n", " 'Casualties Of War.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Dead Poets Society Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Do-The-Right-Thing.html',\n", " 'Screenplay-Drugstore_Cowboy.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Dry White Season, A Script.html',\n", " 'http://www.dailyscript.com/scripts/erik_the_viking.html',\n", " 'http://www.dailyscript.com/scripts/fabulous_baker_boys_april_1985.html',\n", " 'Farewell to the King [p. 80].pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Field of Dreams Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Friday-the-13th-Part-VIII-Jason-Takes-Manhattan.html',\n", " 'http://www.imsdb.com/Movie Scripts/Ghostbusters 2 Script.html',\n", " 'Gleaming The Cube (1987.02.17) [Scan].pdf',\n", " 'Glory.pdf',\n", " 'Halloween 5.pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Heathers.HTM',\n", " 'http://www.imsdb.com/Movie Scripts/Indiana Jones and the Last Crusade Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Leviathan.html',\n", " 'http://www.imsdb.com/Movie Scripts/Little Mermaid, The Script.html',\n", " 'http://www.aellea.com/emruf3/toyshop.html',\n", " 'http://www.imsdb.com/Movie Scripts/Major League Script.html',\n", " 'Christmas Vacation.pdf',\n", " 'http://www.dailyscript.com/scripts/A-Nightmare-on-Elm-Street-5.txt',\n", " 'http://www.dailyscript.com/scripts/Pet-Sematary.html',\n", " 'http://www.moviescriptsandscreenplays.com/johncusack/scripts/sayanything.txt',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Sea_of_Love.pdf',\n", " 'http://www.scifiscripts.com/scripts/Trek/Star_Trek_V.htm',\n", " 'http://www.dailyscript.com/scripts/True%20Believer.txt',\n", " 'Uncle Buck [John Hughes] [10.07.88] [Scan].pdf',\n", " 'were-no-angels_draft2_davidmamet.pdf',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/when-harry-met-sally-aug-23-88-numbered-pink.pdf',\n", " 'Wizard, The (1989) [4-12-1989] (1).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Sex, Lies and Videotape Script.html',\n", " 'http://www.dailyscript.com/scripts/ford-fairlane_early.html',\n", " 'film_20100519/all_imsdb_05_19_10/Awakenings.html',\n", " 'http://www.scifiscripts.com/scripts/back_to_the_future_2_3.pdf',\n", " 'Bird On A Wire (1988.12.25) [Scan].pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Bonfire-of-the-Vanities.html',\n", " 'http://www.awesomefilm.comscript/seetheparadise.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Dances with Wolves Script.html',\n", " 'Days of Thunder.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Die Hard 2 Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Edward-Scissorhands.html',\n", " 'http://www.imsdb.com/Movie Scripts/Ghost Script.html',\n", " 'http://www.dailyscript.com/scripts/goodfellas.html',\n", " 'film_20100519/all_imsdb_05_19_10/Gremlins-2.html',\n", " 'http://www.imsdb.com/Movie Scripts/Grifters, The Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Hard-to-Kill.html',\n", " 'http://web.archive.org/web/20040321134849/http://www.kotinet.com/nagtloper/write/hardware.pdf',\n", " 'Home Alone (1990.02.02).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Hunt for Red October, The Script.html',\n", " \"film_20100519/all_imsdb_05_19_10/Jacob's-Ladder.html\",\n", " 'http://www.dailyscript.com/scripts/Memphis_Belle.pdf',\n", " 'http://www.dailyscript.com/scripts/misery.html',\n", " 'My Blue Heaven (1988.11.04).pdf',\n", " 'Narrow Margin 4.24.89 Revised Pink.pdf',\n", " 'PREDATOR 2 (1990) by Jim Thomas & John Thomas [1989.12.15] [2nd] [Scan].pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Pretty-Woman.html',\n", " 'http://www.imsdb.com/Movie Scripts/Rescuers Down Under, The Script.html',\n", " 'Revenge.pdf',\n", " 'Rocky V [11-6-1989] [Scan].pdf',\n", " 'http://www.imsdb.com/Movie Scripts/To Sleep with Anger Script.html',\n", " 'Total Recall (8-22-1989) (Final) (Digital).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Tremors Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Wild At Heart Script.html',\n", " 'http://www.dailyscript.com/scripts/the_addams_family.pdf',\n", " 'http://www.awesomefilm.com/script/ashaolin.html',\n", " 'http://www.imsdb.com/Movie Scripts/Backdraft Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Barton-Fink.html',\n", " 'http://www.fpx.de/fp/Disney/Scripts/BeautyAndTheBeast.txt',\n", " 'Boyz N the Hood (1990.09.28) [Scan].pdf',\n", " 'Cape Fear - 1990-08-31 - Draft.pdf',\n", " 'Career Opportunities [John Hughes] [09.12.89] [Scan].pdf',\n", " 'Curly Sue [John Hughes] [07.01.90] [Scan].pdf',\n", " 'DEAD AGAIN by Scott Frank [1990-8-27].pdf',\n", " 'Deceived (1991).pdf',\n", " 'DEFENDING YOUR LIFE by Albert Brooks [1989.11.01] [Scan].pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Doors,-The.html',\n", " 'http://www.awesomefilm.comscript/fatherofthebride.txt',\n", " 'http://www.dailyscript.com/scripts/fisher-king_early.html',\n", " 'Nightmare On Elm Street 6 - Freddy\\x92s Dead (1991) [1990-10-29] [3rd Num.] [Rev. 1990-12-19] [Scan].pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Fried_Green_Tomatoes.pdf',\n", " 'Hook (early).pdf',\n", " 'http://www.dailyscript.com/scripts/Hudson_Hawk.PDF',\n", " 'http://www.imsdb.com/Movie Scripts/JFK Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Kafka.html',\n", " 'film_20100519/all_imsdb_05_19_10/Last-Boy-Scout,-The.html',\n", " 'http://www.imsdb.com/Movie Scripts/Light Sleeper Script.html',\n", " 'Little Man Tate (1990.05.14).pdf',\n", " 'MARRYING MAN, THE (1991) by Neil Simon [1989.10.25] [Scan].pdf',\n", " 'film_20100519/all_imsdb_05_19_10/My-Girl.html',\n", " 'My Own Private Idaho.pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Naked_Gun_II,_The.pdf',\n", " 'Naked Lunch (1991) [1990-2-12] [1st] [Scan].pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Point Break Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Rambling Rose Script.html',\n", " 'Ricochet (1990.11.07).pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Robin-Hood-Prince-of-Thieves.html',\n", " 'Rocketeer, The (1990.03.02).pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Silence-of-the-Lambs.html',\n", " 'http://www.scifiscripts.com/scripts/Trek/Star_Trek_VI.htm',\n", " 'http://www.scifiscripts.com/scripts/t2.txt',\n", " 'http://www.angelfire.com/movies/ridleyscott/script/ThelmaAndLouise.txt',\n", " 'http://www.angelfire.com/movies/ridleyscott/script/1492-ConquestOfParadise.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Aladdin Script.html',\n", " 'http://www.horrorlair.com/scripts/alien3_hill.html',\n", " 'film_20100519/all_imsdb_05_19_10/Bad-Lieutenant.html',\n", " 'film_20100519/all_imsdb_05_19_10/Basic-Instinct.html',\n", " 'film_20100519/all_imsdb_05_19_10/Batman-Returns.html',\n", " 'film_20100519/all_imsdb_05_19_10/Bodyguard.html',\n", " \"BRAM STOKER'S DRACULA (1992) by James V. Hart [1991.04.16] [2nd] [Scan].pdf\",\n", " 'http://www.dailyscript.com/scripts/buffy_the_vampire_slayer.html',\n", " 'Candyman (Bernard Rose) (Draft Revised - August 1991, Corrected).pdf',\n", " 'Chaplin (Shooting Script).pdf',\n", " 'film_20100519/all_imsdb_05_19_10/City-of-Joy.html',\n", " 'http://www.imsdb.com/Movie Scripts/Crying Game Script.html',\n", " 'CUTTING EDGE, THE (1992) by Tony Gilroy [1990.03.15] [Scan].pdf',\n", " 'Death Becomes Her (1991.07.25) [Scan].pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Deep-Cover.html',\n", " 'http://www.imsdb.com/Movie Scripts/Distinguished Gentleman, The Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/A Few Good Men Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Glengarry Glen Gross Script.html',\n", " 'Hand That Rocks the Cradle, The (2nd draft).pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Hellraiser-3-Hell-on-Earth.html',\n", " 'http://www.dailyscript.com/scripts/hero1.html',\n", " 'http://www.imsdb.com/Movie Scripts/Jennifer Eight Script.html',\n", " 'http://www.scifiscripts.com/msol/Knight_m.txt',\n", " 'http://www.dailyscript.com/scripts/last-of-the-mohicans-script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Malcolm-X.html',\n", " 'film_20100519/all_imsdb_05_19_10/Man-Trouble.html',\n", " 'film_20100519/all_imsdb_05_19_10/Mariachi,-El.html',\n", " 'memoirs of an invisible man.pdf',\n", " 'my-cousin-vinny-screenplay.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Newsies.html',\n", " 'film_20100519/all_imsdb_05_19_10/Pet-Sematary-II.html',\n", " 'film_20100519/all_imsdb_05_19_10/Power-of-One,-The.html',\n", " 'Red Rock West (1992).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Reservoir Dogs Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Single White Female Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Sister-Act.html',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/sneakers.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Thunderheart.html',\n", " 'http://www.dailyscript.com/scripts/Twin+Peaks+-+Fire+Walk+With+Me.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Unforgiven.html',\n", " 'Unlawful Entry (1992) [1991-5-28] [Rev. 1st] [Scan].pdf',\n", " 'http://www.awesomefilm.com/script/arcticblue.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Army of Darkness Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Being-Human.html',\n", " 'http://www.imsdb.com/Movie Scripts/Benny & Joon Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Bodies, Rest & Motion Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Body-of-Evidence.html',\n", " 'Boxing Helena (2nd Revised Draft).pdf',\n", " \"CARLITO'S WAY (1993) by David Koepp [1992.10.05] [Scan].pdf\",\n", " 'http://www.dailyscript.com/scripts/cliffhanger_stallone.html',\n", " 'Dark Half, The (1990.08).pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Dave.htm',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/dazed-confused-feb20-92-numbered.pdf',\n", " 'Demolition Man (1992.11.19).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Even Cowgirls Get the Blues Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Fatal Instinct Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Fugitive, The Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Groundhog-Day.html',\n", " 'In the Line of Fire - 1992-04 - Draft.pdf',\n", " 'http://www.horrorlair.com/scripts/friday13thjasongoestohell.txt',\n", " 'http://web.archive.org/web/20030424093216/http://www.jpdatabase.net/jurassic/downloadable/jurassicpark_script_final.txt',\n", " 'http://www.dailyscript.com/scripts/Kalifornia.txt',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/last-action-hero-oct-10-92-composite.pdf',\n", " 'MALICE (1993) by Scott Frank (aka Damages) [1992-2-4] [Rev.] [Scan].pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Manhattan Murder Mystery Script.html',\n", " 'Needful Things.pdf',\n", " 'http://www.dailyscript.com/scripts/nightmare-b4-xmas_early.html',\n", " 'Nowhere to Run (AKA Pals) - Joe Eszterhas.pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Pelican_Brief.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Perfect-World,-A.html',\n", " 'http://www.imsdb.com/Movie Scripts/Philadelphia Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Piano, The Script.html',\n", " 'Point of No Return (1992.02.18).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Program, The Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Sandlot Kids, The Script.html',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/schindlers-list-numbered.pdf',\n", " 'Searching for Bobby Fischer.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Six Degrees of Separation Script.html',\n", " 'http://www.awesomefilm.comscript/s_seatl.html',\n", " 'film_20100519/all_imsdb_05_19_10/So-I-Married-an-Axe-Murderer.html',\n", " 'film_20100519/all_imsdb_05_19_10/Spare-Me.html',\n", " \"film_20100519/all_imsdb_05_19_10/This-Boy's-Life.html\",\n", " 'http://www.imsdb.com/Movie Scripts/Three Musketeers, The Script.html',\n", " 'http://www.dailyscript.com/scripts/tombstone.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/True Romance Script.html',\n", " 'http://www.horrorlair.com/scripts/whiteang.txt',\n", " 'http://www.dailyscript.com/scripts/ace_ventura_shoot.html',\n", " 'http://www.awesomefilm.comscript/priscilla.txt',\n", " 'bullets over broadway.pdf',\n", " 'Clear and Present Danger by Donald Stewart Nov 10 1992.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Clerks Script.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Client,_The.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Cobb.html',\n", " 'http://www.imsdb.com/Movie Scripts/Color of Night Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Crow, The Script.html',\n", " 'Dolores Claiborne by Tony Gilroy.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Dumb and Dumber Script.html',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/ed-wood-nov-20-92-1st.pdf',\n", " 'http://www.dailyscript.com/scripts/fantasticfour.htm',\n", " 'The Flintstones (Steven E. De Souza) (Early Draft - September 1987).pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Forrest-Gump.html',\n", " 'http://www.dailyscript.com/scripts/Frankenstein+(1994).txt',\n", " 'http://www.imsdb.com/Movie Scripts/Heavenly Creatures Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Hudsucker-Proxy,-The.html',\n", " \"http://www.imsdb.com/Movie Scripts/I'll Do Anything Script.html\",\n", " 'http://www.imsdb.com/Movie Scripts/Interview with the Vampire Script.html',\n", " 'Killing Zoe (Roger Avary, Undated, Unspecified Draft).pdf',\n", " 'http://imsdb.com/scripts/Lion-King,-The.pdf',\n", " 'http://www.scifiscripts.com/msol/LEON.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Mask,-The.html',\n", " 'http://www.dailyscript.com/scripts/Maverick.PDF',\n", " 'http://www.imsdb.com/Movie Scripts/Mute Witness Script.html',\n", " 'http://www.scifiscripts.com/msol/my_girl_2.html',\n", " 'film_20100519/all_imsdb_05_19_10/Natural-Born-Killers.html',\n", " 'http://www.awesomefilm.com/script/onlyyou.html',\n", " 'film_20100519/all_imsdb_05_19_10/Pulp-Fiction.html',\n", " 'http://www.awesomefilm.com/script/quizshow.pdf',\n", " 'Ref, The (1993.02.04).pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Serial-Mom.html',\n", " 'http://www.imsdb.com/Movie Scripts/Shallow Grave Script.html',\n", " 'http://www.dailyscript.com/scripts/shawshank.html',\n", " 'http://www.scifiscripts.com/scripts/Trek/Star_Trek_VII.htm',\n", " 'http://www.horrorlair.com/scripts/strangehold.txt',\n", " 'http://www.imsdb.com/Movie Scripts/True Lies Script.html',\n", " 'http://www.dailyscript.com/scripts/WesCravensNewNightmare.txt',\n", " 'http://www.imsdb.com/Movie Scripts/American President, The Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Assassins Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Bad-Boys.html',\n", " 'http://www.imsdb.com/Movie Scripts/Batman Forever Script.html',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/before-sunrise-numbered.pdf',\n", " 'http://www.awesomefilm.com/script/manhunt.html',\n", " 'http://www.awesomefilm.comscript/boysontheside.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Braveheart.html',\n", " 'http://www.awesomefilm.com/script/bomc.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Casino Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Clueless Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Copycat Script.html',\n", " 'Crimson Tide.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Devil in a Blue Dress Script.html',\n", " '3. Die Hard - With a Vengeance.pdf',\n", " 'http://www.awesomefilm.com/script/thedoomgeneration.html',\n", " 'http://www.imsdb.com/Movie Scripts/Four Rooms Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Get Shorty Script.html',\n", " 'GoldenEye_Reduced.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Hackers Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Halloween-The-Curse-of-Michael-Myers.html',\n", " 'film_20100519/all_imsdb_05_19_10/Heat.html',\n", " 'In the Mouth of Madness (Michael De Luca).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Judge Dredd Script.html',\n", " 'Kicking and Screaming.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Kids Script.html',\n", " 'kiss of Death.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Leaving Las Vegas Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Living in Oblivion Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Lord of Illusions Script.html',\n", " 'Mallrats (1995.11.29).pdf',\n", " 'http://www.dailyscript.com/scripts/MightyMorphinPowerRangers.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Nick of Time Script.html',\n", " 'http://www.dailyscript.com/scripts/Nixon.txt',\n", " 'http://www.frontiernet.net/~rcowart/nowthen_script.html',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/outbreak-dec-1993.pdf',\n", " 'http://www.dailyscript.com/scripts/Panther.txt',\n", " 'http://cbl.orcein.net/pocahontas/misc/script.htm',\n", " 'film_20100519/all_imsdb_05_19_10/Prophecy,-The.html',\n", " 'http://www.imsdb.com/Movie Scripts/Se7en Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Sense and Sensibility Script.html',\n", " 'SHOWGIRLS (1995) by Joe Eszterhas [1994.09.30] [Scan] Kopie.pdf',\n", " 'http://www.awesomefilm.com/script/smoke.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Strange Days Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Toy-Story.html',\n", " 'http://www.dailyscript.com/scripts/twelve_monkeys.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Usual_Suspects.HTM',\n", " 'Village of the Damned (1993.06.25).pdf',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/virtuosity-aug24-94-numbered-4th-revised.pdf',\n", " 'Waterworld (Second Revised Draft).pdf',\n", " 'Wild Bill (3.29.94)[SCAN][REV][BLUE] 113pp.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Basquiat Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Beavis-and-Butt-head-Do-America.html',\n", " 'Bed of Roses (1996).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Blood and Wine Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Bottle Rocket Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Bound Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Broken-Arrow.html',\n", " 'Cable Guy.pdf',\n", " 'Chain Reaction-Dead Drop 1995.pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-City_Hall.pdf',\n", " 'http://www.dailyscript.com/scripts/CourageUnderFire.pdf',\n", " 'Craft, The - Peter Filardi (revisions) Andrew Fleming [11.11.1994].pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Crow-City-of-Angels,-The.html',\n", " 'Diabolique.pdf',\n", " 'http://www.awesomefilm.comscript/emma.txt',\n", " 'http://www.imsdb.com/Movie Scripts/English Patient, The Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Escape-From-L.A..html',\n", " 'film_20100519/all_imsdb_05_19_10/Executive-Decision.html',\n", " 'http://www.imsdb.com/Movie Scripts/Fargo Script.html',\n", " 'FRIGHTENERS, THE (1996) by Fran Walsh & Peter Jackson [1994.07.20] [3rd] [Scan].pdf',\n", " 'http://www.imsdb.com/Movie Scripts/From Dusk Till Dawn Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Ghost and the Darkness, The Script.html',\n", " 'http://www.horrorlair.com/scripts/houseOfTheDamned.txt',\n", " 'http://www.fpx.de/fp/Disney/Scripts/HunchbackOfNotreDame.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Independence-Day.html',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/isle-of-dr-moreau-the-apr-26-94.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Jerry Maguire Script.html',\n", " 'http://www.kithfan.org/work/transcripts/braincandy.pdf',\n", " 'LAST MAN STANDING (1996) 1995.08.28 draft by Walter Hill.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Lone Star Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Long-Kiss-Goodnight,-The.html',\n", " 'http://www.dailyscript.com/scripts/Lost+Highway.txt',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Mars_Attacks.pdf',\n", " 'http://www.dailyscript.com/scripts/mirrorhastwofaces.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Mission Impossible Script.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Mrs._Winterbourne.pdf',\n", " 'Primal Fear (1996) [1995-4-10] [Rev.] [Scan].pdf',\n", " 'Ransom (Richard Price, 11-3-95).pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Rock,-The.html',\n", " 'http://www.awesomefilm.com/script/romeo+juliet.txt',\n", " 'http://www.dailyscript.com/scripts/Scream.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Sling Blade Script.html',\n", " 'Space Jam Script.pdf',\n", " 'http://www.scifiscripts.com/scripts/Trek/Star_Trek_VIII.htm',\n", " 'http://www.imsdb.com/Movie Scripts/Swingers Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Tin-Cup.html',\n", " 'http://www.imsdb.com/Movie Scripts/Trainspotting Script.html',\n", " 'Twister (Crichton & Martin, undated, unspecified draft).pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Up_Close_and_Personal.pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Watermelon_Woman,_The.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/White-Squall.html',\n", " 'http://www.dailyscript.com/scripts/187.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Absolute Power Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Affliction Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Air-Force-One.html',\n", " 'http://www.horrorlair.com/scripts/alienresurrection_early.html',\n", " 'http://www.dailyscript.com/scripts/American+Werewolf+In+Paris,+An.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Anastasia.html',\n", " 'http://www.imsdb.com/Movie Scripts/Apt Pupil Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Assignment,-The.html',\n", " 'film_20100519/all_imsdb_05_19_10/Austin-Powers---International-Man-of-Mystery.html',\n", " 'http://www.imsdb.com/Movie Scripts/Batman and Robin Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Bean Script.html',\n", " 'https://web.archive.org/web/20131219023653/http://www.youknow-forkids.com/biglebowski.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Boogie Nights Script.html',\n", " 'http://indiegroundfilms.files.wordpress.com/2013/08/breakdown-mar-96-revised-1st.pdf',\n", " 'https://www.dropbox.com/sh/jpxh25l44yke4np/AAB5ZDKF7Y-w24yB7gVKhWwha/LIFE%20IS%20BEAUTIFUL%20%281997%29%20%20AKA%20-%20LA%20VITA%20E%20BELLA%20%20Vincenzo%20Cerami%20%26%20Roberto%20Benigni.pdf?dl=0',\n", " 'http://www.imsdb.com/Movie Scripts/Chasing Amy Script.html',\n", " 'http://www.dailyscript.com/scripts/conspiracy-theory.html',\n", " 'film_20100519/all_imsdb_05_19_10/Contact.html',\n", " 'http://www.imsdb.com/Movie Scripts/Gang Related Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Dark City Script.html',\n", " 'deconstructing_harry.pdf',\n", " 'http://www.horrorlair.com/scripts/deeprising.txt',\n", " \"http://www.imsdb.com/Movie Scripts/Devil's Advocate Script.html\",\n", " 'film_20100519/all_imsdb_05_19_10/Donnie-Brasco.html',\n", " 'The Edge (1997) (aka Bookworm) [1996-1] [Scan].pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Event Horizon Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Face-Off.html',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/fallen-may-17-96-revised-4tg.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Fifth-Element,-The.html',\n", " 'film_20100519/all_imsdb_05_19_10/G.I.-Jane.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Game_The.HTM',\n", " 'film_20100519/all_imsdb_05_19_10/Gattaca.html',\n", " 'http://www.imsdb.com/Movie Scripts/Good Will Hunting Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Grosse-Point-Blank.html',\n", " 'http://www.imsdb.com/Movie Scripts/Mrs. Brown Script.html',\n", " 'http://www.cubbi.org/disney/scripts/hercules.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Horse Whisperer, The Script.html',\n", " 'I Know What You Did Last Summer.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Ice Storm, The Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Inventing the Abbotts Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Jackie Brown Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Kundun.html',\n", " 'film_20100519/all_imsdb_05_19_10/L.A.-Confidential.html',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/liar-liar-apr-18-96-rough.pdf',\n", " 'http://www.scifiscripts.com/scripts/jurassic2_thw.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Meet Joe Black Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Men-in-Black.html',\n", " 'film_20100519/all_imsdb_05_19_10/Metro.html',\n", " 'http://www.dailyscript.com/scripts/mimic_production.html',\n", " \"film_20100519/all_imsdb_05_19_10/My-Best-Friend's-Wedding.html\",\n", " 'http://www.imsdb.com/Movie Scripts/As Good As It Gets Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Postman, The Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Relic, The Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Saint,-The.html',\n", " 'Scream 2.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Soldier Script.html',\n", " 'http://www.scifiscripts.com/scripts/spaceJacked.txt',\n", " 'Spawn (1996.05.14).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Sphere Script.html',\n", " 'http://www.dailyscript.com/scripts/threekings_shootingdraft.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Starship-Troopers.html',\n", " 'film_20100519/all_imsdb_05_19_10/State-and-Main.html',\n", " 'http://www.awesomefilm.com/script/suburbia.html',\n", " 'http://www.imsdb.com/Movie Scripts/Sweet Hereafter, The Script.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Simple_Plan,_A.pdf',\n", " 'http://www.dailyscript.com/scripts/Titanic.txt',\n", " 'http://www.awesomefilm.com/script/tomorrowneverdies.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Truman-Show,-The.html',\n", " 'http://www.imsdb.com/Movie Scripts/U Turn Script.html',\n", " 'https://www.dropbox.com/sh/jpxh25l44yke4np/AAD3lUocc5KGZYoeHUPvSdhua/AMERICAN%20HISTORY%20X%20%281998%29%20David%20McKenna.pdf?dl=0',\n", " 'http://www.imsdb.com/Movie Scripts/Antz Script.html',\n", " 'http://www.scifiscripts.com/scripts/Armageddon.pdf',\n", " 'http://www.dailyscript.com/scripts/beingjohnmalkovich.html',\n", " 'http://www.imsdb.com/Movie Scripts/Beloved Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Blade Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Mummy,-The.html',\n", " 'Breakfast of Champions.pdf',\n", " 'A CIVIL ACTION.pdf',\n", " 'http://www.awesomefilm.comscript/Deep_End_of_the_Ocean.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Dogma Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Enemy of the State Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Eyes-Wide-Shut.html',\n", " 'http://www.imsdb.com/Movie Scripts/Fantastic Four Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Fear and Loathing in Las Vegas Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Gods and Monsters Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Stepmom Script.html',\n", " 'https://www.dropbox.com/sh/jpxh25l44yke4np/AACMZt8oNOB7Hd8iIzN2JYfZa/GREEN%20MILE%2C%20THE%20%281999%29%20%281st%20Draft%201997-11-04%29%20%5Bdigital%5D.pdf?dl=0',\n", " 'http://www.horrorlair.com/scripts/H20.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Hard-Rain.html',\n", " 'http://www.imsdb.com/Movie Scripts/Lock, Stock and Two Smoking Barrels Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Lord-of-the-Rings-Fellowship-of-the-Ring,-The.html',\n", " 'film_20100519/all_imsdb_05_19_10/Lost-in-Space.html',\n", " 'film_20100519/all_imsdb_05_19_10/Man-in-the-Iron-Mask.html',\n", " 'http://www.dailyscript.com/scripts/mighty_joe_young.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Mission Impossible II Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Mulan Script.html',\n", " 'http://www.awesomefilm.comscript/roxt.txt',\n", " 'ODD COUPLE II, THE (1998) by Neil Simon [1997.04.10] [3rd] [Scan].pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Out of Sight Script.html',\n", " 'Payback (August 1997).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Pleasantville Script.html',\n", " 'http://www.awesomefilm.comscript/practicalmagic.html',\n", " 'http://www.dailyscript.com/scripts/RKO218.html',\n", " 'http://www.dailyscript.com/scripts/resevil.html',\n", " 'http://www.dailyscript.com/scripts/rush_hour.html',\n", " 'http://www.moviescriptsandscreenplays.com/BenandMatt/savingprivateryan.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Shipping News, The Script.html',\n", " 'SnakeEyes.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Snow-Falling-On-Cedars.html',\n", " 'http://www.scifiscripts.com/scripts/Trek/Star_Trek_IX.htm',\n", " 'http://www.meeko.org/disney/tarzan/script.html',\n", " 'From Dusk Till Dawn 2- Texas Blood Money.pdf',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/thin-red-line-the.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Wag the Dog Script.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Wedding_Singer,_The.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Wild Things Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Wild Wild West Script.html',\n", " 'X FILES, THE (1998) (aka X-FILES - FIGHT THE FUTURE) by Chris Carter [1997.06.30] [Yellow Pages] [Digital].pdf',\n", " 'http://www.dailyscript.com/scripts/xmenscript0215.pdf',\n", " 'Zero Effect (Jake Kasdan, 4.21.97).pdf',\n", " 'eXistenZ.pdf',\n", " 'http://www.scifiscripts.com/scripts/StarWars-Episode1.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Star-Wars-Attack-of-the-Clones.html',\n", " 'http://www.imsdb.com/Movie Scripts/Star Wars: Revenge of the Sith Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Lethal Weapon 4 Script.html',\n", " 'http://www.scifiscripts.com/msol/return_to_me.html',\n", " 'film_20100519/all_imsdb_05_19_10/Henry-Fool.html',\n", " 'film_20100519/all_imsdb_05_19_10/Ronin.html',\n", " 'http://www.imsdb.com/Movie Scripts/Analyze This Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Cube Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Life Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Very-Bad-Things.html',\n", " 'http://www.imsdb.com/Movie Scripts/Blast from the Past, The Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Cider-House-Rules,-The.html',\n", " 'http://www.imsdb.com/Movie Scripts/Notting Hill Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Man on the Moon Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Shrek Script.html',\n", " 'http://www.dailyscript.com/scripts/Legionnaire.txt',\n", " 'http://www.imsdb.com/Movie Scripts/Election Script.html',\n", " 'ElizabethHSF.pdf',\n", " 'ROUNDERS (1998) by David Levien and Brian Koppelman.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Rushmore.html',\n", " \"http://www.imsdb.com/Movie Scripts/You've Got Mail Script.html\",\n", " 'The Iron Giant.pdf',\n", " 'ravenous.pdf',\n", " \"http://www.imsdb.com/Movie Scripts/There's Something About Mary Script.html\",\n", " 'http://www.imsdb.com/Movie Scripts/I Still Know What You Did Last Summer Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Ed TV Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Mystery Men Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/At First Sight Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Crow Salvation, The Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Matrix,-The.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Faculty_The.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Siege, The Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Scream 3 Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Talented Mr. Ripley, The Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/8MM Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Pitch Black Script.html',\n", " 'Arlington Road.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Entrapment Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Fight-Club.html',\n", " 'http://www.imsdb.com/Movie Scripts/Shakespeare in Love Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Intolerable-Cruelty.html',\n", " 'http://www.imsdb.com/Movie Scripts/Pi Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Cruel Intentions Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Go Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Lake Placid Script.html',\n", " 'http://www.dailyscript.com/scripts/Training_Day.pdf',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/true-crime-may-11-98-revised-numbered-1st.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Insider, The Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Mumford Script.html',\n", " 'http://www.dailyscript.com/scripts/TheCorruptor.txt',\n", " 'Ninth Gate, The (1999) (Numbered).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/World is not Enough, The Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/American Psycho Script.html',\n", " 'http://www.dailyscript.com/scripts/boondock-saints-script.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-General%27s_Daughter.pdf',\n", " 'http://www.alibi-books.com/thelostson/thelostson.htm',\n", " 'film_20100519/all_imsdb_05_19_10/Highlander-Endgame.html',\n", " 'film_20100519/all_imsdb_05_19_10/Austin-Powers---The-Spy-Who-Shagged-Me.html',\n", " 'film_20100519/all_imsdb_05_19_10/Thirteen-Days.html',\n", " 'http://www.horrorlair.com/movies/urban_legend_screenplay.html',\n", " 'End_of_Days.pdf',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/any-given-sunday-may01-99-revised-shooting.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/High Fidelity Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/10 Things I Hate About You Script.html',\n", " 'All The Pretty Horses (2000) [1993-11-1] [1st Rev.] [Scan].pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Never Been Kissed Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Office Space Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Drop Dead Gorgeous Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/South-Park.html',\n", " 'http://www.imsdb.com/Movie Scripts/Cold Mountain Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Croupier Script.html',\n", " \"http://www.imsdb.com/Movie Scripts/Charlie's Angels Script.html\",\n", " 'http://www.horrorlair.com/scripts/lostsouls.txt',\n", " 'http://www.imsdb.com/Movie Scripts/What Lies Beneath Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Cast-Away.html',\n", " 'http://www.imsdb.com/Movie Scripts/Ghost World Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Sleepy Hollow Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Jurassic-Park-III.html',\n", " 'http://www.imsdb.com/Movie Scripts/Runaway Bride Script.html',\n", " 'http://www.awesomefilm.com/script/chillfactor.html',\n", " 'http://www.imsdb.com/Movie Scripts/American Pie Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Beach,-The.html',\n", " 'film_20100519/all_imsdb_05_19_10/Bringing-Out-the-Dead.html',\n", " 'http://www.imsdb.com/Movie Scripts/Hollow Man Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Stir-of-Echoes.html',\n", " 'Stuart Little (1997.09.05).pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Detroit Rock City Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Limey, The Script.html',\n", " 'http://www.horrorlair.com/HorrorWorld/newyork/bones.html',\n", " 'film_20100519/all_imsdb_05_19_10/Monkeybone.html',\n", " 'http://www.imsdb.com/Movie Scripts/Mulholland Drive Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Music of the Heart Script.html',\n", " \"HELLBOY (1st draft, March '99).pdf\",\n", " 'film_20100519/all_imsdb_05_19_10/Lord-of-the-Rings-Return-of-the-King.html',\n", " 'film_20100519/all_imsdb_05_19_10/Lord-of-the-Rings-The-Two-Towers.html',\n", " 'http://www.imsdb.com/Movie Scripts/Sixth Sense, The Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Thunderbirds Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/American Beauty Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Haunting, The Script.html',\n", " 'http://www.dailyscript.com/scripts/nursebetty.html',\n", " 'http://www.imsdb.com/Movie Scripts/Gladiator Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Cecil B. Demented Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Autumn in New York Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Cherry Falls Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Magnolia Script.html',\n", " 'http://www.scifiscripts.com/scripts/GalaxyQuest.txt',\n", " 'film_20100519/all_imsdb_05_19_10/15-Minutes.html',\n", " 'http://www.dailyscript.com/scripts/Quills.txt',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Requiem_for_a_Dream.HTM',\n", " 'http://www.dailyscript.com/scripts/MINORITY_REPORT_--_May_16th_2001_revised_draft_by_Scott_Frank.html',\n", " 'film_20100519/all_imsdb_05_19_10/Traffic.html',\n", " 'http://www.imsdb.com/Movie Scripts/Almost Famous Script.html',\n", " 'http://sfy.ru/sfy.html?script=boiler_room',\n", " 'film_20100519/all_imsdb_05_19_10/Mission-to-Mars.html',\n", " 'http://www.imsdb.com/Movie Scripts/Phone Booth Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Reindeer Games Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Wonder Boys Script.html',\n", " 'http://www.horrorlair.com/scripts/Battlefield-Earth(2000).pdf',\n", " 'http://www.dailyscript.com/scripts/house-on-haunted-hill.html',\n", " 'http://www.imsdb.com/Movie Scripts/Little Nicky Script.html',\n", " 'http://www.horrorlair.com/scripts/blairwitch_transcript.html',\n", " 'http://www.imsdb.com/Movie Scripts/Frequency Script.html',\n", " 'http://www.dailyscript.com/scripts/Space_Cowboys.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Sugar and Spice Script.html',\n", " 'GONE IN 60 SECONDS by Scott Rosenberg [1999-4-6] [Digital].pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Patriot,-The.html',\n", " 'http://www.imsdb.com/Movie Scripts/Blade II Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Birthday Girl Script.html',\n", " 'http://indiegroundfilms.files.wordpress.com/2014/01/shade-of-the-vampire-mar-22-99-revised.pdf',\n", " 'http://www.dailyscript.com/scripts/o_brother.html',\n", " 'http://www.scifiscripts.com/cartoon/pokemon.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Replacements,-The.html',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-28_Days.pdf',\n", " 'http://www.dailyscript.com/scripts/Erin+Brockovich.txt',\n", " 'film_20100519/all_imsdb_05_19_10/Final-Destination.html',\n", " 'http://www.dailyscript.com/scripts/Next_Friday.html',\n", " 'film_20100519/all_imsdb_05_19_10/Ticker.html',\n", " 'Monsters, Inc. (2001.11).pdf',\n", " 'http://www.dailyscript.com/scripts/love_and_basketball.html',\n", " 'film_20100519/all_imsdb_05_19_10/Red-Planet.html',\n", " 'WayoftheGun,The.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/You Can Count On Me Script.html',\n", " 'exorcist-the beginning.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Save-the-Last-Dance.html',\n", " 'Joy Ride (2001) (aka Squelch) [1999-4-28] [Scan].pdf',\n", " 'http://www.pages.drexel.edu/~ina22/splaylib/Screenplay-Children_of_Men.htm',\n", " 'film_20100519/all_imsdb_05_19_10/Snatch.html',\n", " 'http://www.dailyscript.com/scripts/Get_Carter.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Memento Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Cell, The Script.html',\n", " 'film_20100519/all_imsdb_05_19_10/Ginger-Snaps.html',\n", " 'http://www.dailyscript.com/scripts/happy-campers_early.html',\n", " 'http://www.dailyscript.com/scripts/jason_x_shooting.html',\n", " 'https://www.dropbox.com/sh/jpxh25l44yke4np/AABH96p-Kgs8OPQWiEeNHczsa/AMELIE%20%282001%29%20%5BAKA%20Le%20fabuleux%20destin%20d%27Am%C3%A9lie%20Poulain%5D%20Guillaume%20Laurant%20%26%20Jean-Pierre%20Jeunet%20%5BTranslated%5D.pdf?dl=0',\n", " 'https://indiegroundfilms.files.wordpress.com/2014/01/a-i.pdf',\n", " 'Hannibal (Zaillian) (2000.02.09) (Scanned)-2.pdf',\n", " 'film_20100519/all_imsdb_05_19_10/Pearl-Harbor.html',\n", " 'film_20100519/all_imsdb_05_19_10/Bamboozled.html',\n", " 'film_20100519/all_imsdb_05_19_10/Gangs-of-New-York.html',\n", " 'film_20100519/all_imsdb_05_19_10/Unbreakable.html',\n", " 'http://www.imsdb.com/Movie Scripts/Antitrust Script.html',\n", " 'http://www.imsdb.com/Movie Scripts/Family Man, The Script.html',\n", " 'Dracula 2000 (2000.04.20) [Scan].pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Human Nature Script.html',\n", " 'http://www.dailyscript.com/scripts/Halloween8_shooting.pdf',\n", " 'http://www.imsdb.com/Movie Scripts/Blow Script.html',\n", " ...]" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts['link'].tolist()" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
imdb_idscript_idtitleyeargross (inflation-adjusted)source
0tt00197774031The Cocoanuts1929NaNhttp://www.pages.drexel.edu/~ina22/splaylib/Sc...
1tt00218848521Frankenstein1931298.0Frankenstein (Florey & Fort) [1931-5-23] [Scan...
2tt00220541086The Last Flight1931NaNfilm_20100519/all_imsdb_05_19_10/Last-Flight,-...
3tt00226261631American Madness1932NaNhttp://www.imsdb.com/Movie Scripts/American Ma...
4tt00229582438Grand Hotel1932NaNhttp://www.imsdb.com/Movie Scripts/Grand Hotel...
.....................
1995tt37337788533Pay the Ghost2015NaNPay The Ghost (Dan Kay, 9-1-09).pdf
1996tt38083425499Son of Saul20150.0http://gointothestory.blcklst.com/wp-content/u...
1997tt38502148056Dope201518.0Dope (2013.10.31) [Digital].pdf
1998tt38590765507Truth20152.0http://gointothestory.blcklst.com/wp-content/u...
1999tt42705165410Grandma20157.0http://gointothestory.blcklst.com/wp-content/u...
\n", "

2000 rows × 6 columns

\n", "
" ], "text/plain": [ " imdb_id script_id title year \\\n", "0 tt0019777 4031 The Cocoanuts 1929 \n", "1 tt0021884 8521 Frankenstein 1931 \n", "2 tt0022054 1086 The Last Flight 1931 \n", "3 tt0022626 1631 American Madness 1932 \n", "4 tt0022958 2438 Grand Hotel 1932 \n", "... ... ... ... ... \n", "1995 tt3733778 8533 Pay the Ghost 2015 \n", "1996 tt3808342 5499 Son of Saul 2015 \n", "1997 tt3850214 8056 Dope 2015 \n", "1998 tt3859076 5507 Truth 2015 \n", "1999 tt4270516 5410 Grandma 2015 \n", "\n", " gross (inflation-adjusted) \\\n", "0 NaN \n", "1 298.0 \n", "2 NaN \n", "3 NaN \n", "4 NaN \n", "... ... \n", "1995 NaN \n", "1996 0.0 \n", "1997 18.0 \n", "1998 2.0 \n", "1999 7.0 \n", "\n", " source \n", "0 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "1 Frankenstein (Florey & Fort) [1931-5-23] [Scan... \n", "2 film_20100519/all_imsdb_05_19_10/Last-Flight,-... \n", "3 http://www.imsdb.com/Movie Scripts/American Ma... \n", "4 http://www.imsdb.com/Movie Scripts/Grand Hotel... \n", "... ... \n", "1995 Pay The Ghost (Dan Kay, 9-1-09).pdf \n", "1996 http://gointothestory.blcklst.com/wp-content/u... \n", "1997 Dope (2013.10.31) [Digital].pdf \n", "1998 http://gointothestory.blcklst.com/wp-content/u... \n", "1999 http://gointothestory.blcklst.com/wp-content/u... \n", "\n", "[2000 rows x 6 columns]" ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts.rename(columns={'link': 'source'})" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "film_scripts.rename(columns={'link': 'source'}, inplace=True)" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
imdb_idscript_idtitleyeargross (inflation-adjusted)source
0tt00197774031The Cocoanuts1929NaNhttp://www.pages.drexel.edu/~ina22/splaylib/Sc...
1tt00218848521Frankenstein1931298.0Frankenstein (Florey & Fort) [1931-5-23] [Scan...
2tt00220541086The Last Flight1931NaNfilm_20100519/all_imsdb_05_19_10/Last-Flight,-...
3tt00226261631American Madness1932NaNhttp://www.imsdb.com/Movie Scripts/American Ma...
4tt00229582438Grand Hotel1932NaNhttp://www.imsdb.com/Movie Scripts/Grand Hotel...
.....................
1995tt37337788533Pay the Ghost2015NaNPay The Ghost (Dan Kay, 9-1-09).pdf
1996tt38083425499Son of Saul20150.0http://gointothestory.blcklst.com/wp-content/u...
1997tt38502148056Dope201518.0Dope (2013.10.31) [Digital].pdf
1998tt38590765507Truth20152.0http://gointothestory.blcklst.com/wp-content/u...
1999tt42705165410Grandma20157.0http://gointothestory.blcklst.com/wp-content/u...
\n", "

2000 rows × 6 columns

\n", "
" ], "text/plain": [ " imdb_id script_id title year \\\n", "0 tt0019777 4031 The Cocoanuts 1929 \n", "1 tt0021884 8521 Frankenstein 1931 \n", "2 tt0022054 1086 The Last Flight 1931 \n", "3 tt0022626 1631 American Madness 1932 \n", "4 tt0022958 2438 Grand Hotel 1932 \n", "... ... ... ... ... \n", "1995 tt3733778 8533 Pay the Ghost 2015 \n", "1996 tt3808342 5499 Son of Saul 2015 \n", "1997 tt3850214 8056 Dope 2015 \n", "1998 tt3859076 5507 Truth 2015 \n", "1999 tt4270516 5410 Grandma 2015 \n", "\n", " gross (inflation-adjusted) \\\n", "0 NaN \n", "1 298.0 \n", "2 NaN \n", "3 NaN \n", "4 NaN \n", "... ... \n", "1995 NaN \n", "1996 0.0 \n", "1997 18.0 \n", "1998 2.0 \n", "1999 7.0 \n", "\n", " source \n", "0 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "1 Frankenstein (Florey & Fort) [1931-5-23] [Scan... \n", "2 film_20100519/all_imsdb_05_19_10/Last-Flight,-... \n", "3 http://www.imsdb.com/Movie Scripts/American Ma... \n", "4 http://www.imsdb.com/Movie Scripts/Grand Hotel... \n", "... ... \n", "1995 Pay The Ghost (Dan Kay, 9-1-09).pdf \n", "1996 http://gointothestory.blcklst.com/wp-content/u... \n", "1997 Dope (2013.10.31) [Digital].pdf \n", "1998 http://gointothestory.blcklst.com/wp-content/u... \n", "1999 http://gointothestory.blcklst.com/wp-content/u... \n", "\n", "[2000 rows x 6 columns]" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "film_scripts['link'] = film_scripts['source']" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [], "source": [ "film_scripts_dropped = film_scripts.drop(['link'], axis=1) #inplace=True is another option" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
imdb_idscript_idtitleyeargross (inflation-adjusted)sourcelink
1538tt10226031534(500) Days of Summer200937.0http://www.imsdb.com/Movie Scripts/500 Days of...http://www.imsdb.com/Movie Scripts/500 Days of...
897tt0147800151210 Things I Hate About You199965.0http://www.imsdb.com/Movie Scripts/10 Things I...http://www.imsdb.com/Movie Scripts/10 Things I...
1864tt2024544151712 Years a Slave201360.0http://www.imsdb.com/Movie Scripts/12 Years a ...http://www.imsdb.com/Movie Scripts/12 Years a ...
1282tt0417385151412 and Holding2005NaNhttp://www.imsdb.com/Movie Scripts/12 and Hold...http://www.imsdb.com/Movie Scripts/12 and Hold...
1753tt15423441520127 Hours201020.0http://www.imsdb.com/Movie Scripts/127 Hours S...http://www.imsdb.com/Movie Scripts/127 Hours S...
........................
831tt01209068158Zero Effect19983.0Zero Effect (Jake Kasdan, 4.21.97).pdfZero Effect (Jake Kasdan, 4.21.97).pdf
1292tt04210903768Zerophilia2005NaNhttp://www.imsdb.com/Movie Scripts/Zerophilia ...http://www.imsdb.com/Movie Scripts/Zerophilia ...
1326tt04437066491Zodiac200741.0Zodiac (2007) (aka Chronicles) [Rev. 2006-7-5]...Zodiac (2007) (aka Chronicles) [Rev. 2006-7-5]...
832tt01209076973eXistenZ19994.0eXistenZ.pdfeXistenZ.pdf
1097tt02957011497xXx2002211.0film_20100519/all_imsdb_05_19_10/xXx.htmlfilm_20100519/all_imsdb_05_19_10/xXx.html
\n", "

2000 rows × 7 columns

\n", "
" ], "text/plain": [ " imdb_id script_id title year \\\n", "1538 tt1022603 1534 (500) Days of Summer 2009 \n", "897 tt0147800 1512 10 Things I Hate About You 1999 \n", "1864 tt2024544 1517 12 Years a Slave 2013 \n", "1282 tt0417385 1514 12 and Holding 2005 \n", "1753 tt1542344 1520 127 Hours 2010 \n", "... ... ... ... ... \n", "831 tt0120906 8158 Zero Effect 1998 \n", "1292 tt0421090 3768 Zerophilia 2005 \n", "1326 tt0443706 6491 Zodiac 2007 \n", "832 tt0120907 6973 eXistenZ 1999 \n", "1097 tt0295701 1497 xXx 2002 \n", "\n", " gross (inflation-adjusted) \\\n", "1538 37.0 \n", "897 65.0 \n", "1864 60.0 \n", "1282 NaN \n", "1753 20.0 \n", "... ... \n", "831 3.0 \n", "1292 NaN \n", "1326 41.0 \n", "832 4.0 \n", "1097 211.0 \n", "\n", " source \\\n", "1538 http://www.imsdb.com/Movie Scripts/500 Days of... \n", "897 http://www.imsdb.com/Movie Scripts/10 Things I... \n", "1864 http://www.imsdb.com/Movie Scripts/12 Years a ... \n", "1282 http://www.imsdb.com/Movie Scripts/12 and Hold... \n", "1753 http://www.imsdb.com/Movie Scripts/127 Hours S... \n", "... ... \n", "831 Zero Effect (Jake Kasdan, 4.21.97).pdf \n", "1292 http://www.imsdb.com/Movie Scripts/Zerophilia ... \n", "1326 Zodiac (2007) (aka Chronicles) [Rev. 2006-7-5]... \n", "832 eXistenZ.pdf \n", "1097 film_20100519/all_imsdb_05_19_10/xXx.html \n", "\n", " link \n", "1538 http://www.imsdb.com/Movie Scripts/500 Days of... \n", "897 http://www.imsdb.com/Movie Scripts/10 Things I... \n", "1864 http://www.imsdb.com/Movie Scripts/12 Years a ... \n", "1282 http://www.imsdb.com/Movie Scripts/12 and Hold... \n", "1753 http://www.imsdb.com/Movie Scripts/127 Hours S... \n", "... ... \n", "831 Zero Effect (Jake Kasdan, 4.21.97).pdf \n", "1292 http://www.imsdb.com/Movie Scripts/Zerophilia ... \n", "1326 Zodiac (2007) (aka Chronicles) [Rev. 2006-7-5]... \n", "832 eXistenZ.pdf \n", "1097 film_20100519/all_imsdb_05_19_10/xXx.html \n", "\n", "[2000 rows x 7 columns]" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts.sort_values(by=['title'])" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Index(['imdb_id', 'script_id', 'title', 'year', 'gross (inflation-adjusted)',\n", " 'source', 'link'],\n", " dtype='object')" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts.columns" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [], "source": [ "film_scripts.rename(columns={'gross (inflation-adjusted)': 'gross_ia'}, inplace=True)" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
gross_ia
0NaN
1298.0
2NaN
3NaN
4NaN
......
1995NaN
19960.0
199718.0
19982.0
19997.0
\n", "

2000 rows × 1 columns

\n", "
" ], "text/plain": [ " gross_ia\n", "0 NaN\n", "1 298.0\n", "2 NaN\n", "3 NaN\n", "4 NaN\n", "... ...\n", "1995 NaN\n", "1996 0.0\n", "1997 18.0\n", "1998 2.0\n", "1999 7.0\n", "\n", "[2000 rows x 1 columns]" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts[['gross_ia']]" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0 False\n", "1 True\n", "2 False\n", "3 False\n", "4 False\n", " ... \n", "1995 False\n", "1996 True\n", "1997 True\n", "1998 True\n", "1999 True\n", "Name: gross_ia, Length: 2000, dtype: bool" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts['gross_ia'] >= 0" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0 True\n", "1 False\n", "2 True\n", "3 True\n", "4 True\n", " ... \n", "1995 True\n", "1996 False\n", "1997 False\n", "1998 False\n", "1999 False\n", "Name: gross_ia, Length: 2000, dtype: bool" ] }, "execution_count": 27, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts['gross_ia'].isna()" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
imdb_idscript_idtitleyeargross_iasourcelink
1tt00218848521Frankenstein1931298.0Frankenstein (Florey & Fort) [1931-5-23] [Scan...Frankenstein (Florey & Fort) [1931-5-23] [Scan...
15tt00317253016Ninotchka193945.0http://www.dailyscript.com/scripts/Ninotchka.txthttp://www.dailyscript.com/scripts/Ninotchka.txt
16tt00321381483The Wizard of Oz1939839.0film_20100519/all_imsdb_05_19_10/Wizard-of-Oz,...film_20100519/all_imsdb_05_19_10/Wizard-of-Oz,...
23tt00354231213Kate & Leopold200172.0film_20100519/all_imsdb_05_19_10/Kate-&-Leopol...film_20100519/all_imsdb_05_19_10/Kate-&-Leopol...
40tt00419596003The Third Man19498.0https://www.dropbox.com/sh/jpxh25l44yke4np/AAA...https://www.dropbox.com/sh/jpxh25l44yke4np/AAA...
........................
1994tt37220705491The Lady in the Van20150.0http://gointothestory.blcklst.com/wp-content/u...http://gointothestory.blcklst.com/wp-content/u...
1996tt38083425499Son of Saul20150.0http://gointothestory.blcklst.com/wp-content/u...http://gointothestory.blcklst.com/wp-content/u...
1997tt38502148056Dope201518.0Dope (2013.10.31) [Digital].pdfDope (2013.10.31) [Digital].pdf
1998tt38590765507Truth20152.0http://gointothestory.blcklst.com/wp-content/u...http://gointothestory.blcklst.com/wp-content/u...
1999tt42705165410Grandma20157.0http://gointothestory.blcklst.com/wp-content/u...http://gointothestory.blcklst.com/wp-content/u...
\n", "

1662 rows × 7 columns

\n", "
" ], "text/plain": [ " imdb_id script_id title year gross_ia \\\n", "1 tt0021884 8521 Frankenstein 1931 298.0 \n", "15 tt0031725 3016 Ninotchka 1939 45.0 \n", "16 tt0032138 1483 The Wizard of Oz 1939 839.0 \n", "23 tt0035423 1213 Kate & Leopold 2001 72.0 \n", "40 tt0041959 6003 The Third Man 1949 8.0 \n", "... ... ... ... ... ... \n", "1994 tt3722070 5491 The Lady in the Van 2015 0.0 \n", "1996 tt3808342 5499 Son of Saul 2015 0.0 \n", "1997 tt3850214 8056 Dope 2015 18.0 \n", "1998 tt3859076 5507 Truth 2015 2.0 \n", "1999 tt4270516 5410 Grandma 2015 7.0 \n", "\n", " source \\\n", "1 Frankenstein (Florey & Fort) [1931-5-23] [Scan... \n", "15 http://www.dailyscript.com/scripts/Ninotchka.txt \n", "16 film_20100519/all_imsdb_05_19_10/Wizard-of-Oz,... \n", "23 film_20100519/all_imsdb_05_19_10/Kate-&-Leopol... \n", "40 https://www.dropbox.com/sh/jpxh25l44yke4np/AAA... \n", "... ... \n", "1994 http://gointothestory.blcklst.com/wp-content/u... \n", "1996 http://gointothestory.blcklst.com/wp-content/u... \n", "1997 Dope (2013.10.31) [Digital].pdf \n", "1998 http://gointothestory.blcklst.com/wp-content/u... \n", "1999 http://gointothestory.blcklst.com/wp-content/u... \n", "\n", " link \n", "1 Frankenstein (Florey & Fort) [1931-5-23] [Scan... \n", "15 http://www.dailyscript.com/scripts/Ninotchka.txt \n", "16 film_20100519/all_imsdb_05_19_10/Wizard-of-Oz,... \n", "23 film_20100519/all_imsdb_05_19_10/Kate-&-Leopol... \n", "40 https://www.dropbox.com/sh/jpxh25l44yke4np/AAA... \n", "... ... \n", "1994 http://gointothestory.blcklst.com/wp-content/u... \n", "1996 http://gointothestory.blcklst.com/wp-content/u... \n", "1997 Dope (2013.10.31) [Digital].pdf \n", "1998 http://gointothestory.blcklst.com/wp-content/u... \n", "1999 http://gointothestory.blcklst.com/wp-content/u... \n", "\n", "[1662 rows x 7 columns]" ] }, "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts[film_scripts.gross_ia >= 0] # film_scripts[film_scripts.gross_ia.isna() == False]" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [], "source": [ "film_scripts_cleaned = film_scripts[film_scripts.gross_ia.isna() == False]" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "172749.0" ] }, "execution_count": 30, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts_cleaned.gross_ia.sum()" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "2009 87\n", "2010 82\n", "2011 79\n", "2014 69\n", "1999 66\n", "2008 64\n", "2013 64\n", "2007 60\n", "2012 60\n", "1997 59\n", "1998 58\n", "2001 58\n", "2000 55\n", "2005 53\n", "2002 51\n", "1995 50\n", "1996 49\n", "2015 47\n", "2004 47\n", "2003 46\n", "2006 45\n", "1992 43\n", "1993 42\n", "1994 36\n", "1991 36\n", "1989 35\n", "1990 32\n", "1987 25\n", "1988 22\n", "1986 19\n", "1984 18\n", "1985 16\n", "1983 13\n", "1982 13\n", "1981 9\n", "1980 9\n", "1979 5\n", "1972 4\n", "1973 4\n", "1974 3\n", "1977 3\n", "1978 3\n", "1975 3\n", "1976 2\n", "1958 2\n", "1939 2\n", "1968 2\n", "1966 2\n", "1954 2\n", "1959 2\n", "1949 1\n", "1967 1\n", "1960 1\n", "1970 1\n", "1971 1\n", "1931 1\n", "Name: year, dtype: int64" ] }, "execution_count": 31, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts_cleaned.year.value_counts()" ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts_cleaned.groupby('year')" ] }, { "cell_type": "code", "execution_count": 33, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
script_idgross_ia
countmeanstdmin25%50%75%maxcountmeanstdmin25%50%75%max
year
19311.08521.000000NaN8521.08521.008521.08521.008521.01.0298.000000NaN298.0298.00298.0298.00298.0
19392.02249.5000001083.9946961483.01866.252249.52632.753016.02.0442.000000561.44278445.0243.50442.0640.50839.0
19491.06003.000000NaN6003.06003.006003.06003.006003.01.08.000000NaN8.08.008.08.008.0
19542.03963.5000001105.2078993182.03572.753963.54354.254745.02.0107.500000109.60155130.068.75107.5146.25185.0
19582.04832.5000001659.5796153659.04245.754832.55419.256006.02.033.5000006.36396129.031.2533.535.7538.0
19592.05257.500000378.3021284990.05123.755257.55391.255525.02.0653.000000321.026479426.0539.50653.0766.50880.0
19601.01251.000000NaN1251.01251.001251.01251.001251.01.0545.000000NaN545.0545.00545.0545.00545.0
19662.04427.5000003744.1304061780.03103.754427.55751.257075.02.026.50000028.9913786.016.2526.536.7547.0
19671.05534.000000NaN5534.05534.005534.05534.005534.01.01029.000000NaN1029.01029.001029.01029.001029.0
19682.02708.0000002945.806850625.01666.502708.03749.504791.02.0274.000000144.249783172.0223.00274.0325.00376.0
19701.06514.000000NaN6514.06514.006514.06514.006514.01.0458.000000NaN458.0458.00458.0458.00458.0
19711.05236.000000NaN5236.05236.005236.05236.005236.01.0101.000000NaN101.0101.00101.0101.00101.0
19724.03863.5000001042.5080342387.03581.754128.54410.254810.04.0381.000000251.654525138.0198.75348.0530.25690.0
19734.03080.2500002523.010949666.01194.002777.04663.256101.04.0430.000000297.613844174.0189.75380.0620.25786.0
19743.05945.0000002097.6703744280.04767.005254.06777.508301.03.0408.333333146.138063266.0333.50401.0479.50558.0
19753.04117.0000003776.6828041281.01973.502666.05535.008404.03.0572.666667541.31537321.0307.50594.0848.501103.0
19762.02913.5000002304.4610001284.02098.752913.53728.254543.02.0289.500000265.165043102.0195.75289.5383.25477.0
19773.02340.6666672309.165506682.01022.001362.03170.004978.03.0815.000000868.406011152.0323.50495.01146.501798.0
19783.03554.0000002941.6333901155.01913.002671.04753.506836.03.0228.666667134.600644130.0152.00174.0278.00382.0
19795.03775.8000002048.1661801576.01676.004489.05025.006113.05.0160.000000161.3087106.016.00126.0285.00367.0
19809.04309.2222222368.586909648.03042.004030.05072.008308.09.0310.777778248.323769121.0177.00258.0333.00937.0
19819.03668.5555562247.422530868.01700.004381.05114.006837.09.0124.111111133.3355219.018.0078.0194.00372.0
198213.03898.1538462548.4645981071.01849.003654.04738.008360.013.0127.846154160.9616144.014.0047.0159.00523.0
198313.05557.3846152356.4045901305.04449.006234.07423.008268.013.0179.461538220.9078301.058.00116.0187.00853.0
198418.04002.1666672631.105745707.01239.753989.56473.508218.018.0145.944444168.1307174.042.5072.0172.50592.0
198516.04027.8750002450.790617774.01428.254703.56059.757856.016.0109.562500138.4311957.035.5062.098.25517.0
198619.04244.9473682504.756020909.02169.003925.06476.008452.019.0114.736842114.74892513.026.5090.0154.50422.0
198725.04253.0000002327.4629611244.02519.004369.05350.009231.025.084.40000076.6045045.032.0068.0113.00373.0
198822.04615.0454552262.155030642.03649.754426.06695.008417.022.0107.72727393.1277582.029.5095.5150.00325.0
198935.04412.5428572705.798320725.02246.503881.06647.509223.035.0113.457143121.3706874.031.0060.0149.50550.0
199032.04048.5000002533.785667706.02142.003655.07148.258095.032.0132.343750141.7131611.033.5084.5172.50588.0
199136.04848.4166672737.449787715.02360.505068.57254.509254.036.0123.694444112.0751842.042.5091.0163.50452.0
199243.03372.4651162784.359244712.01205.502093.04834.509135.043.096.116279107.5148291.020.5047.0126.50454.0
199342.04540.5000002695.193402757.02432.753451.57254.509116.042.0100.476190144.9116200.017.0055.5130.25844.0
199436.03684.1388892343.521869734.01902.503313.54778.508831.036.0133.583333187.7430422.020.2548.0213.50880.0
199550.04242.9200002655.624181280.02080.003290.56740.509216.050.079.50000079.5434041.016.5051.0130.75368.0
199649.04144.7755102672.647168729.01893.003591.05533.008935.049.0106.795918123.2979080.032.0065.0135.00602.0
199759.02990.4915252221.512830647.01150.002370.03938.508971.059.0127.542373182.7095230.022.5090.0140.001249.0
199858.03770.9310342180.394764985.02110.503259.05142.759177.058.0102.55172492.0433103.032.7574.5145.75400.0
199966.03446.4696972208.622252699.01814.002898.54203.009199.066.0117.969697132.3102383.033.0065.0173.50813.0
200055.03193.5818182093.420475714.01522.002814.03981.509245.055.090.03636488.5232682.027.5059.0120.00377.0
200158.03649.0000002349.727315623.01703.002995.55044.009056.058.0108.500000128.6877430.020.0058.0144.25488.0
200251.03291.0196082184.264439630.01342.502924.04843.008744.051.0103.843137122.1157440.024.0058.0130.50509.0
200346.03582.0000002476.061353740.01193.752775.55298.258405.046.0123.391304136.7475341.037.2580.5136.50549.0
200447.04076.4893622598.387024790.01421.503605.06433.509123.047.0114.489362127.2771496.040.5073.0142.00610.0
200553.05167.3773582816.528894818.02704.004608.08007.009222.053.0100.641509117.8392152.031.0044.0121.00515.0
200645.05467.8888892536.251334745.03599.006038.07878.008970.045.079.55555698.3864260.020.0053.085.00561.0
200760.04681.6500002299.525830665.03212.504382.56502.508902.060.084.10000096.7556240.020.7547.5101.50405.0
200864.04335.1562502630.272454785.02284.503544.06922.758916.064.079.625000103.7970390.017.5039.0108.25645.0
200987.03700.3908052158.231621633.01947.503124.04777.009246.087.078.862069124.0648900.012.0034.093.00882.0
201082.04291.9024391956.577773768.02732.254132.55158.509253.082.069.65853788.2973680.08.0043.088.00457.0
201179.04354.1518992473.1007171530.02500.003213.06518.509241.079.054.20253254.6723060.013.0040.079.50209.0
201260.05149.6166672361.9885051659.02956.005438.07102.009111.060.088.133333124.7603080.013.7544.5118.00680.0
201364.05781.5000002289.0075551286.04316.006034.57712.259247.064.075.60937590.7771770.013.2540.0110.25429.0
201469.06548.3333331437.0265842275.05478.006529.07742.009230.069.060.27536273.9530620.011.0033.091.00372.0
201547.06766.5957451243.5735265388.05474.507349.07890.008564.047.074.638298151.5221930.07.0027.068.00927.0
\n", "
" ], "text/plain": [ " script_id \\\n", " count mean std min 25% 50% 75% \n", "year \n", "1931 1.0 8521.000000 NaN 8521.0 8521.00 8521.0 8521.00 \n", "1939 2.0 2249.500000 1083.994696 1483.0 1866.25 2249.5 2632.75 \n", "1949 1.0 6003.000000 NaN 6003.0 6003.00 6003.0 6003.00 \n", "1954 2.0 3963.500000 1105.207899 3182.0 3572.75 3963.5 4354.25 \n", "1958 2.0 4832.500000 1659.579615 3659.0 4245.75 4832.5 5419.25 \n", "1959 2.0 5257.500000 378.302128 4990.0 5123.75 5257.5 5391.25 \n", "1960 1.0 1251.000000 NaN 1251.0 1251.00 1251.0 1251.00 \n", "1966 2.0 4427.500000 3744.130406 1780.0 3103.75 4427.5 5751.25 \n", "1967 1.0 5534.000000 NaN 5534.0 5534.00 5534.0 5534.00 \n", "1968 2.0 2708.000000 2945.806850 625.0 1666.50 2708.0 3749.50 \n", "1970 1.0 6514.000000 NaN 6514.0 6514.00 6514.0 6514.00 \n", "1971 1.0 5236.000000 NaN 5236.0 5236.00 5236.0 5236.00 \n", "1972 4.0 3863.500000 1042.508034 2387.0 3581.75 4128.5 4410.25 \n", "1973 4.0 3080.250000 2523.010949 666.0 1194.00 2777.0 4663.25 \n", "1974 3.0 5945.000000 2097.670374 4280.0 4767.00 5254.0 6777.50 \n", "1975 3.0 4117.000000 3776.682804 1281.0 1973.50 2666.0 5535.00 \n", "1976 2.0 2913.500000 2304.461000 1284.0 2098.75 2913.5 3728.25 \n", "1977 3.0 2340.666667 2309.165506 682.0 1022.00 1362.0 3170.00 \n", "1978 3.0 3554.000000 2941.633390 1155.0 1913.00 2671.0 4753.50 \n", "1979 5.0 3775.800000 2048.166180 1576.0 1676.00 4489.0 5025.00 \n", "1980 9.0 4309.222222 2368.586909 648.0 3042.00 4030.0 5072.00 \n", "1981 9.0 3668.555556 2247.422530 868.0 1700.00 4381.0 5114.00 \n", "1982 13.0 3898.153846 2548.464598 1071.0 1849.00 3654.0 4738.00 \n", "1983 13.0 5557.384615 2356.404590 1305.0 4449.00 6234.0 7423.00 \n", "1984 18.0 4002.166667 2631.105745 707.0 1239.75 3989.5 6473.50 \n", "1985 16.0 4027.875000 2450.790617 774.0 1428.25 4703.5 6059.75 \n", "1986 19.0 4244.947368 2504.756020 909.0 2169.00 3925.0 6476.00 \n", "1987 25.0 4253.000000 2327.462961 1244.0 2519.00 4369.0 5350.00 \n", "1988 22.0 4615.045455 2262.155030 642.0 3649.75 4426.0 6695.00 \n", "1989 35.0 4412.542857 2705.798320 725.0 2246.50 3881.0 6647.50 \n", "1990 32.0 4048.500000 2533.785667 706.0 2142.00 3655.0 7148.25 \n", "1991 36.0 4848.416667 2737.449787 715.0 2360.50 5068.5 7254.50 \n", "1992 43.0 3372.465116 2784.359244 712.0 1205.50 2093.0 4834.50 \n", "1993 42.0 4540.500000 2695.193402 757.0 2432.75 3451.5 7254.50 \n", "1994 36.0 3684.138889 2343.521869 734.0 1902.50 3313.5 4778.50 \n", "1995 50.0 4242.920000 2655.624181 280.0 2080.00 3290.5 6740.50 \n", "1996 49.0 4144.775510 2672.647168 729.0 1893.00 3591.0 5533.00 \n", "1997 59.0 2990.491525 2221.512830 647.0 1150.00 2370.0 3938.50 \n", "1998 58.0 3770.931034 2180.394764 985.0 2110.50 3259.0 5142.75 \n", "1999 66.0 3446.469697 2208.622252 699.0 1814.00 2898.5 4203.00 \n", "2000 55.0 3193.581818 2093.420475 714.0 1522.00 2814.0 3981.50 \n", "2001 58.0 3649.000000 2349.727315 623.0 1703.00 2995.5 5044.00 \n", "2002 51.0 3291.019608 2184.264439 630.0 1342.50 2924.0 4843.00 \n", "2003 46.0 3582.000000 2476.061353 740.0 1193.75 2775.5 5298.25 \n", "2004 47.0 4076.489362 2598.387024 790.0 1421.50 3605.0 6433.50 \n", "2005 53.0 5167.377358 2816.528894 818.0 2704.00 4608.0 8007.00 \n", "2006 45.0 5467.888889 2536.251334 745.0 3599.00 6038.0 7878.00 \n", "2007 60.0 4681.650000 2299.525830 665.0 3212.50 4382.5 6502.50 \n", "2008 64.0 4335.156250 2630.272454 785.0 2284.50 3544.0 6922.75 \n", "2009 87.0 3700.390805 2158.231621 633.0 1947.50 3124.0 4777.00 \n", "2010 82.0 4291.902439 1956.577773 768.0 2732.25 4132.5 5158.50 \n", "2011 79.0 4354.151899 2473.100717 1530.0 2500.00 3213.0 6518.50 \n", "2012 60.0 5149.616667 2361.988505 1659.0 2956.00 5438.0 7102.00 \n", "2013 64.0 5781.500000 2289.007555 1286.0 4316.00 6034.5 7712.25 \n", "2014 69.0 6548.333333 1437.026584 2275.0 5478.00 6529.0 7742.00 \n", "2015 47.0 6766.595745 1243.573526 5388.0 5474.50 7349.0 7890.00 \n", "\n", " gross_ia \\\n", " max count mean std min 25% 50% \n", "year \n", "1931 8521.0 1.0 298.000000 NaN 298.0 298.00 298.0 \n", "1939 3016.0 2.0 442.000000 561.442784 45.0 243.50 442.0 \n", "1949 6003.0 1.0 8.000000 NaN 8.0 8.00 8.0 \n", "1954 4745.0 2.0 107.500000 109.601551 30.0 68.75 107.5 \n", "1958 6006.0 2.0 33.500000 6.363961 29.0 31.25 33.5 \n", "1959 5525.0 2.0 653.000000 321.026479 426.0 539.50 653.0 \n", "1960 1251.0 1.0 545.000000 NaN 545.0 545.00 545.0 \n", "1966 7075.0 2.0 26.500000 28.991378 6.0 16.25 26.5 \n", "1967 5534.0 1.0 1029.000000 NaN 1029.0 1029.00 1029.0 \n", "1968 4791.0 2.0 274.000000 144.249783 172.0 223.00 274.0 \n", "1970 6514.0 1.0 458.000000 NaN 458.0 458.00 458.0 \n", "1971 5236.0 1.0 101.000000 NaN 101.0 101.00 101.0 \n", "1972 4810.0 4.0 381.000000 251.654525 138.0 198.75 348.0 \n", "1973 6101.0 4.0 430.000000 297.613844 174.0 189.75 380.0 \n", "1974 8301.0 3.0 408.333333 146.138063 266.0 333.50 401.0 \n", "1975 8404.0 3.0 572.666667 541.315373 21.0 307.50 594.0 \n", "1976 4543.0 2.0 289.500000 265.165043 102.0 195.75 289.5 \n", "1977 4978.0 3.0 815.000000 868.406011 152.0 323.50 495.0 \n", "1978 6836.0 3.0 228.666667 134.600644 130.0 152.00 174.0 \n", "1979 6113.0 5.0 160.000000 161.308710 6.0 16.00 126.0 \n", "1980 8308.0 9.0 310.777778 248.323769 121.0 177.00 258.0 \n", "1981 6837.0 9.0 124.111111 133.335521 9.0 18.00 78.0 \n", "1982 8360.0 13.0 127.846154 160.961614 4.0 14.00 47.0 \n", "1983 8268.0 13.0 179.461538 220.907830 1.0 58.00 116.0 \n", "1984 8218.0 18.0 145.944444 168.130717 4.0 42.50 72.0 \n", "1985 7856.0 16.0 109.562500 138.431195 7.0 35.50 62.0 \n", "1986 8452.0 19.0 114.736842 114.748925 13.0 26.50 90.0 \n", "1987 9231.0 25.0 84.400000 76.604504 5.0 32.00 68.0 \n", "1988 8417.0 22.0 107.727273 93.127758 2.0 29.50 95.5 \n", "1989 9223.0 35.0 113.457143 121.370687 4.0 31.00 60.0 \n", "1990 8095.0 32.0 132.343750 141.713161 1.0 33.50 84.5 \n", "1991 9254.0 36.0 123.694444 112.075184 2.0 42.50 91.0 \n", "1992 9135.0 43.0 96.116279 107.514829 1.0 20.50 47.0 \n", "1993 9116.0 42.0 100.476190 144.911620 0.0 17.00 55.5 \n", "1994 8831.0 36.0 133.583333 187.743042 2.0 20.25 48.0 \n", "1995 9216.0 50.0 79.500000 79.543404 1.0 16.50 51.0 \n", "1996 8935.0 49.0 106.795918 123.297908 0.0 32.00 65.0 \n", "1997 8971.0 59.0 127.542373 182.709523 0.0 22.50 90.0 \n", "1998 9177.0 58.0 102.551724 92.043310 3.0 32.75 74.5 \n", "1999 9199.0 66.0 117.969697 132.310238 3.0 33.00 65.0 \n", "2000 9245.0 55.0 90.036364 88.523268 2.0 27.50 59.0 \n", "2001 9056.0 58.0 108.500000 128.687743 0.0 20.00 58.0 \n", "2002 8744.0 51.0 103.843137 122.115744 0.0 24.00 58.0 \n", "2003 8405.0 46.0 123.391304 136.747534 1.0 37.25 80.5 \n", "2004 9123.0 47.0 114.489362 127.277149 6.0 40.50 73.0 \n", "2005 9222.0 53.0 100.641509 117.839215 2.0 31.00 44.0 \n", "2006 8970.0 45.0 79.555556 98.386426 0.0 20.00 53.0 \n", "2007 8902.0 60.0 84.100000 96.755624 0.0 20.75 47.5 \n", "2008 8916.0 64.0 79.625000 103.797039 0.0 17.50 39.0 \n", "2009 9246.0 87.0 78.862069 124.064890 0.0 12.00 34.0 \n", "2010 9253.0 82.0 69.658537 88.297368 0.0 8.00 43.0 \n", "2011 9241.0 79.0 54.202532 54.672306 0.0 13.00 40.0 \n", "2012 9111.0 60.0 88.133333 124.760308 0.0 13.75 44.5 \n", "2013 9247.0 64.0 75.609375 90.777177 0.0 13.25 40.0 \n", "2014 9230.0 69.0 60.275362 73.953062 0.0 11.00 33.0 \n", "2015 8564.0 47.0 74.638298 151.522193 0.0 7.00 27.0 \n", "\n", " \n", " 75% max \n", "year \n", "1931 298.00 298.0 \n", "1939 640.50 839.0 \n", "1949 8.00 8.0 \n", "1954 146.25 185.0 \n", "1958 35.75 38.0 \n", "1959 766.50 880.0 \n", "1960 545.00 545.0 \n", "1966 36.75 47.0 \n", "1967 1029.00 1029.0 \n", "1968 325.00 376.0 \n", "1970 458.00 458.0 \n", "1971 101.00 101.0 \n", "1972 530.25 690.0 \n", "1973 620.25 786.0 \n", "1974 479.50 558.0 \n", "1975 848.50 1103.0 \n", "1976 383.25 477.0 \n", "1977 1146.50 1798.0 \n", "1978 278.00 382.0 \n", "1979 285.00 367.0 \n", "1980 333.00 937.0 \n", "1981 194.00 372.0 \n", "1982 159.00 523.0 \n", "1983 187.00 853.0 \n", "1984 172.50 592.0 \n", "1985 98.25 517.0 \n", "1986 154.50 422.0 \n", "1987 113.00 373.0 \n", "1988 150.00 325.0 \n", "1989 149.50 550.0 \n", "1990 172.50 588.0 \n", "1991 163.50 452.0 \n", "1992 126.50 454.0 \n", "1993 130.25 844.0 \n", "1994 213.50 880.0 \n", "1995 130.75 368.0 \n", "1996 135.00 602.0 \n", "1997 140.00 1249.0 \n", "1998 145.75 400.0 \n", "1999 173.50 813.0 \n", "2000 120.00 377.0 \n", "2001 144.25 488.0 \n", "2002 130.50 509.0 \n", "2003 136.50 549.0 \n", "2004 142.00 610.0 \n", "2005 121.00 515.0 \n", "2006 85.00 561.0 \n", "2007 101.50 405.0 \n", "2008 108.25 645.0 \n", "2009 93.00 882.0 \n", "2010 88.00 457.0 \n", "2011 79.50 209.0 \n", "2012 118.00 680.0 \n", "2013 110.25 429.0 \n", "2014 91.00 372.0 \n", "2015 68.00 927.0 " ] }, "execution_count": 33, "metadata": {}, "output_type": "execute_result" } ], "source": [ "film_scripts_cleaned.groupby('year').describe()" ] }, { "cell_type": "code", "execution_count": 34, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
imdb_idscript_idtitleyeargross_iasourcelink
1138tt03275975392Coraline200987.0http://gointothestory.blcklst.com/wp-content/u...http://gointothestory.blcklst.com/wp-content/u...
1176tt03617484423Inglourious Basterds2009140.0http://www.pages.drexel.edu/~ina22/splaylib/Sc...http://www.pages.drexel.edu/~ina22/splaylib/Sc...
1178tt03624781909The Box200917.0http://www.imsdb.com/Movie Scripts/Box, The Sc...http://www.imsdb.com/Movie Scripts/Box, The Sc...
1186tt03659291471Whiteout200911.0film_20100519/all_imsdb_05_19_10/Whiteout.htmlfilm_20100519/all_imsdb_05_19_10/Whiteout.html
1228tt03861175221Where the Wild Things Are200989.0http://www.pages.drexel.edu/~ina22/splaylib/Sc...http://www.pages.drexel.edu/~ina22/splaylib/Sc...
........................
1647tt12595715164The Twilight Saga: New Moon2009344.0http://www.imsdb.com/scripts/Twilight-New-Moon...http://www.imsdb.com/scripts/Twilight-New-Moon...
1648tt12636704050Crazy Heart200945.0http://www.joblo.com/scripts/ch.pdfhttp://www.joblo.com/scripts/ch.pdf
1650tt12660294725Nowhere Boy20091.0http://www.pages.drexel.edu/~ina22/splaylib/Sc...http://www.pages.drexel.edu/~ina22/splaylib/Sc...
1661tt13008513952The Boondock Saints II: All Saints Day200911.0http://www.joblo.com/scripts/Boondock%20Saints...http://www.joblo.com/scripts/Boondock%20Saints...
1666tt13159814963A Single Man200910.0http://www.pages.drexel.edu/~ina22/splaylib/Sc...http://www.pages.drexel.edu/~ina22/splaylib/Sc...
\n", "

87 rows × 7 columns

\n", "
" ], "text/plain": [ " imdb_id script_id title year \\\n", "1138 tt0327597 5392 Coraline 2009 \n", "1176 tt0361748 4423 Inglourious Basterds 2009 \n", "1178 tt0362478 1909 The Box 2009 \n", "1186 tt0365929 1471 Whiteout 2009 \n", "1228 tt0386117 5221 Where the Wild Things Are 2009 \n", "... ... ... ... ... \n", "1647 tt1259571 5164 The Twilight Saga: New Moon 2009 \n", "1648 tt1263670 4050 Crazy Heart 2009 \n", "1650 tt1266029 4725 Nowhere Boy 2009 \n", "1661 tt1300851 3952 The Boondock Saints II: All Saints Day 2009 \n", "1666 tt1315981 4963 A Single Man 2009 \n", "\n", " gross_ia source \\\n", "1138 87.0 http://gointothestory.blcklst.com/wp-content/u... \n", "1176 140.0 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "1178 17.0 http://www.imsdb.com/Movie Scripts/Box, The Sc... \n", "1186 11.0 film_20100519/all_imsdb_05_19_10/Whiteout.html \n", "1228 89.0 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "... ... ... \n", "1647 344.0 http://www.imsdb.com/scripts/Twilight-New-Moon... \n", "1648 45.0 http://www.joblo.com/scripts/ch.pdf \n", "1650 1.0 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "1661 11.0 http://www.joblo.com/scripts/Boondock%20Saints... \n", "1666 10.0 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "\n", " link \n", "1138 http://gointothestory.blcklst.com/wp-content/u... \n", "1176 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "1178 http://www.imsdb.com/Movie Scripts/Box, The Sc... \n", "1186 film_20100519/all_imsdb_05_19_10/Whiteout.html \n", "1228 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "... ... \n", "1647 http://www.imsdb.com/scripts/Twilight-New-Moon... \n", "1648 http://www.joblo.com/scripts/ch.pdf \n", "1650 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "1661 http://www.joblo.com/scripts/Boondock%20Saints... \n", "1666 http://www.pages.drexel.edu/~ina22/splaylib/Sc... \n", "\n", "[87 rows x 7 columns]" ] }, "execution_count": 34, "metadata": {}, "output_type": "execute_result" } ], "source": [ "films_year = film_scripts_cleaned.groupby('year')\n", "films_year.get_group(2009)" ] }, { "cell_type": "code", "execution_count": 35, "metadata": {}, "outputs": [], "source": [ "films_year = film_scripts_cleaned.groupby('year')['gross_ia'].sum().reset_index()" ] }, { "cell_type": "code", "execution_count": 36, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
yeargross_ia
01931298.0
11939884.0
219498.0
31954215.0
4195867.0
519591306.0
61960545.0
7196653.0
819671029.0
91968548.0
101970458.0
111971101.0
1219721524.0
1319731720.0
1419741225.0
1519751718.0
161976579.0
1719772445.0
181978686.0
191979800.0
2019802797.0
2119811117.0
2219821662.0
2319832333.0
2419842627.0
2519851753.0
2619862180.0
2719872110.0
2819882370.0
2919893971.0
3019904235.0
3119914453.0
3219924133.0
3319934220.0
3419944809.0
3519953975.0
3619965233.0
3719977525.0
3819985948.0
3919997786.0
4020004952.0
4120016293.0
4220025296.0
4320035676.0
4420045381.0
4520055334.0
4620063580.0
4720075046.0
4820085096.0
4920096861.0
5020105712.0
5120114282.0
5220125288.0
5320134839.0
5420144159.0
5520153508.0
\n", "
" ], "text/plain": [ " year gross_ia\n", "0 1931 298.0\n", "1 1939 884.0\n", "2 1949 8.0\n", "3 1954 215.0\n", "4 1958 67.0\n", "5 1959 1306.0\n", "6 1960 545.0\n", "7 1966 53.0\n", "8 1967 1029.0\n", "9 1968 548.0\n", "10 1970 458.0\n", "11 1971 101.0\n", "12 1972 1524.0\n", "13 1973 1720.0\n", "14 1974 1225.0\n", "15 1975 1718.0\n", "16 1976 579.0\n", "17 1977 2445.0\n", "18 1978 686.0\n", "19 1979 800.0\n", "20 1980 2797.0\n", "21 1981 1117.0\n", "22 1982 1662.0\n", "23 1983 2333.0\n", "24 1984 2627.0\n", "25 1985 1753.0\n", "26 1986 2180.0\n", "27 1987 2110.0\n", "28 1988 2370.0\n", "29 1989 3971.0\n", "30 1990 4235.0\n", "31 1991 4453.0\n", "32 1992 4133.0\n", "33 1993 4220.0\n", "34 1994 4809.0\n", "35 1995 3975.0\n", "36 1996 5233.0\n", "37 1997 7525.0\n", "38 1998 5948.0\n", "39 1999 7786.0\n", "40 2000 4952.0\n", "41 2001 6293.0\n", "42 2002 5296.0\n", "43 2003 5676.0\n", "44 2004 5381.0\n", "45 2005 5334.0\n", "46 2006 3580.0\n", "47 2007 5046.0\n", "48 2008 5096.0\n", "49 2009 6861.0\n", "50 2010 5712.0\n", "51 2011 4282.0\n", "52 2012 5288.0\n", "53 2013 4839.0\n", "54 2014 4159.0\n", "55 2015 3508.0" ] }, "execution_count": 36, "metadata": {}, "output_type": "execute_result" } ], "source": [ "films_year" ] }, { "cell_type": "code", "execution_count": 37, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "pandas.core.frame.DataFrame" ] }, "execution_count": 37, "metadata": {}, "output_type": "execute_result" } ], "source": [ "type(films_year)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.6" } }, "nbformat": 4, "nbformat_minor": 4 }