Skip to content

Instantly share code, notes, and snippets.

@sudeepdas
Created April 22, 2013 16:48
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sudeepdas/5436638 to your computer and use it in GitHub Desktop.
Save sudeepdas/5436638 to your computer and use it in GitHub Desktop.
MOVIE RECOMMENDER Buiiding a python based recommendation system by wrangling the movieLens database with Pandas. MovieLens data is available at http://www.grouplens.org/node/73
{
"metadata": {
"name": "MLENS_1MILLION"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Recommending Movies from the MovieLens Database \n",
"=============================\n",
"*** \n",
"\n",
"Here we work with the 1 million ratings dataset from 60,000 users for 3,900 movies. We use an item-based filtering approach to recommend \n",
"movies to an user. We explore implement Pearson correlation based recoomendation scheme. "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Reading in Files \n",
"----\n",
"\n",
"Frist we read in rating and movie data using Pandas."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import pandas as pd\n",
"rcols = ['uid','mid','rating','timestamp']\n",
"ratings = pd.read_table('ml-1m/ratings.dat', sep='::', header=None, names=rcols)\n",
"ratings[:5]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<div style=\"max-height:1000px;max-width:1500px;overflow:auto;\">\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>uid</th>\n",
" <th>mid</th>\n",
" <th>rating</th>\n",
" <th>timestamp</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td><strong>0</strong></td>\n",
" <td> 1</td>\n",
" <td> 1193</td>\n",
" <td> 5</td>\n",
" <td> 978300760</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1</strong></td>\n",
" <td> 1</td>\n",
" <td> 661</td>\n",
" <td> 3</td>\n",
" <td> 978302109</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2</strong></td>\n",
" <td> 1</td>\n",
" <td> 914</td>\n",
" <td> 3</td>\n",
" <td> 978301968</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3</strong></td>\n",
" <td> 1</td>\n",
" <td> 3408</td>\n",
" <td> 4</td>\n",
" <td> 978300275</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4</strong></td>\n",
" <td> 1</td>\n",
" <td> 2355</td>\n",
" <td> 5</td>\n",
" <td> 978824291</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"output_type": "pyout",
"prompt_number": 205,
"text": [
" uid mid rating timestamp\n",
"0 1 1193 5 978300760\n",
"1 1 661 3 978302109\n",
"2 1 914 3 978301968\n",
"3 1 3408 4 978300275\n",
"4 1 2355 5 978824291"
]
}
],
"prompt_number": 205
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"mcols = ['mid','title','genres']\n",
"movies = pd.read_table('ml-1m/movies.dat', sep='::', header=None, names=mcols)\n",
"movies[:5]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<div style=\"max-height:1000px;max-width:1500px;overflow:auto;\">\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>mid</th>\n",
" <th>title</th>\n",
" <th>genres</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td><strong>0</strong></td>\n",
" <td> 1</td>\n",
" <td> Toy Story (1995)</td>\n",
" <td> Animation|Children's|Comedy</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1</strong></td>\n",
" <td> 2</td>\n",
" <td> Jumanji (1995)</td>\n",
" <td> Adventure|Children's|Fantasy</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2</strong></td>\n",
" <td> 3</td>\n",
" <td> Grumpier Old Men (1995)</td>\n",
" <td> Comedy|Romance</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3</strong></td>\n",
" <td> 4</td>\n",
" <td> Waiting to Exhale (1995)</td>\n",
" <td> Comedy|Drama</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4</strong></td>\n",
" <td> 5</td>\n",
" <td> Father of the Bride Part II (1995)</td>\n",
" <td> Comedy</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"output_type": "pyout",
"prompt_number": 206,
"text": [
" mid title genres\n",
"0 1 Toy Story (1995) Animation|Children's|Comedy\n",
"1 2 Jumanji (1995) Adventure|Children's|Fantasy\n",
"2 3 Grumpier Old Men (1995) Comedy|Romance\n",
"3 4 Waiting to Exhale (1995) Comedy|Drama\n",
"4 5 Father of the Bride Part II (1995) Comedy"
]
}
],
"prompt_number": 206
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Meging movie table with rating table \n",
"---- \n",
"\n",
"Next, we merge movies with rating over the mid key "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"allratings = pd.merge(movies, ratings)\n",
"allratings"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "pyout",
"prompt_number": 207,
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"Int64Index: 1000209 entries, 0 to 1000208\n",
"Data columns:\n",
"mid 1000209 non-null values\n",
"title 1000209 non-null values\n",
"genres 1000209 non-null values\n",
"uid 1000209 non-null values\n",
"rating 1000209 non-null values\n",
"timestamp 1000209 non-null values\n",
"dtypes: int64(4), object(2)"
]
}
],
"prompt_number": 207
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"allratings[:10]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<div style=\"max-height:1000px;max-width:1500px;overflow:auto;\">\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>mid</th>\n",
" <th>title</th>\n",
" <th>genres</th>\n",
" <th>uid</th>\n",
" <th>rating</th>\n",
" <th>timestamp</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td><strong>0</strong></td>\n",
" <td> 1</td>\n",
" <td> Toy Story (1995)</td>\n",
" <td> Animation|Children's|Comedy</td>\n",
" <td> 1</td>\n",
" <td> 5</td>\n",
" <td> 978824268</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1</strong></td>\n",
" <td> 1</td>\n",
" <td> Toy Story (1995)</td>\n",
" <td> Animation|Children's|Comedy</td>\n",
" <td> 6</td>\n",
" <td> 4</td>\n",
" <td> 978237008</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2</strong></td>\n",
" <td> 1</td>\n",
" <td> Toy Story (1995)</td>\n",
" <td> Animation|Children's|Comedy</td>\n",
" <td> 8</td>\n",
" <td> 4</td>\n",
" <td> 978233496</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3</strong></td>\n",
" <td> 1</td>\n",
" <td> Toy Story (1995)</td>\n",
" <td> Animation|Children's|Comedy</td>\n",
" <td> 9</td>\n",
" <td> 5</td>\n",
" <td> 978225952</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4</strong></td>\n",
" <td> 1</td>\n",
" <td> Toy Story (1995)</td>\n",
" <td> Animation|Children's|Comedy</td>\n",
" <td> 10</td>\n",
" <td> 5</td>\n",
" <td> 978226474</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5</strong></td>\n",
" <td> 1</td>\n",
" <td> Toy Story (1995)</td>\n",
" <td> Animation|Children's|Comedy</td>\n",
" <td> 18</td>\n",
" <td> 4</td>\n",
" <td> 978154768</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>6</strong></td>\n",
" <td> 1</td>\n",
" <td> Toy Story (1995)</td>\n",
" <td> Animation|Children's|Comedy</td>\n",
" <td> 19</td>\n",
" <td> 5</td>\n",
" <td> 978555994</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>7</strong></td>\n",
" <td> 1</td>\n",
" <td> Toy Story (1995)</td>\n",
" <td> Animation|Children's|Comedy</td>\n",
" <td> 21</td>\n",
" <td> 3</td>\n",
" <td> 978139347</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>8</strong></td>\n",
" <td> 1</td>\n",
" <td> Toy Story (1995)</td>\n",
" <td> Animation|Children's|Comedy</td>\n",
" <td> 23</td>\n",
" <td> 4</td>\n",
" <td> 978463614</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>9</strong></td>\n",
" <td> 1</td>\n",
" <td> Toy Story (1995)</td>\n",
" <td> Animation|Children's|Comedy</td>\n",
" <td> 26</td>\n",
" <td> 3</td>\n",
" <td> 978130703</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"output_type": "pyout",
"prompt_number": 208,
"text": [
" mid title genres uid rating timestamp\n",
"0 1 Toy Story (1995) Animation|Children's|Comedy 1 5 978824268\n",
"1 1 Toy Story (1995) Animation|Children's|Comedy 6 4 978237008\n",
"2 1 Toy Story (1995) Animation|Children's|Comedy 8 4 978233496\n",
"3 1 Toy Story (1995) Animation|Children's|Comedy 9 5 978225952\n",
"4 1 Toy Story (1995) Animation|Children's|Comedy 10 5 978226474\n",
"5 1 Toy Story (1995) Animation|Children's|Comedy 18 4 978154768\n",
"6 1 Toy Story (1995) Animation|Children's|Comedy 19 5 978555994\n",
"7 1 Toy Story (1995) Animation|Children's|Comedy 21 3 978139347\n",
"8 1 Toy Story (1995) Animation|Children's|Comedy 23 4 978463614\n",
"9 1 Toy Story (1995) Animation|Children's|Comedy 26 3 978130703"
]
}
],
"prompt_number": 208
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Lets see which movie has how many ratings"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"allratings['title'].value_counts()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "pyout",
"prompt_number": 209,
"text": [
"American Beauty (1999) 3428\n",
"Star Wars: Episode IV - A New Hope (1977) 2991\n",
"Star Wars: Episode V - The Empire Strikes Back (1980) 2990\n",
"Star Wars: Episode VI - Return of the Jedi (1983) 2883\n",
"Jurassic Park (1993) 2672\n",
"Saving Private Ryan (1998) 2653\n",
"Terminator 2: Judgment Day (1991) 2649\n",
"Matrix, The (1999) 2590\n",
"Back to the Future (1985) 2583\n",
"Silence of the Lambs, The (1991) 2578\n",
"Men in Black (1997) 2538\n",
"Raiders of the Lost Ark (1981) 2514\n",
"Fargo (1996) 2513\n",
"Sixth Sense, The (1999) 2459\n",
"Braveheart (1995) 2443\n",
"...\n",
"Boy Called Hate, A (1995) 1\n",
"Bloody Child, The (1996) 1\n",
"Blood and Sand (Sangre y Arena) (1989) 1\n",
"Bittersweet Motel (2000) 1\n",
"Billy's Holiday (1995) 1\n",
"Beloved/Friend (Amigo/Amado) (1999) 1\n",
"Beauty (1998) 1\n",
"Bat Whispers, The (1930) 1\n",
"Back Stage (2000) 1\n",
"Baby, The (1973) 1\n",
"Another Man's Poison (1952) 1\n",
"Anna (1996) 1\n",
"An Unforgettable Summer (1994) 1\n",
"Alley Cats, The (1968) 1\n",
"Aiqing wansui (1994) 1\n",
"Length: 3706"
]
}
],
"prompt_number": 209
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Keeping only movies with more than 50 Reviews \n",
"---\n",
"\n",
"We use the slicing operation in Pandas to keep only movies that had more than 50 ratings. This gives us 2500 movies to work with. \n"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"allratings_by_index = allratings.set_index('title')\n",
"allratings_filtered = allratings_by_index.ix[allratings['title'].value_counts()>50]\n",
"movie_titles = allratings_filtered.index.unique()\n",
"print len(movie_titles)\n",
"movie_titles"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"2499\n"
]
},
{
"output_type": "pyout",
"prompt_number": 210,
"text": [
"array([Toy Story (1995), Jumanji (1995), Grumpier Old Men (1995), ...,\n",
" Requiem for a Dream (2000), Tigerland (2000), Contender, The (2000)], dtype=object)"
]
}
],
"prompt_number": 210
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Lets drop extraneous columns."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"allratings_new = allratings_filtered.drop(['timestamp','genres','mid'],axis=1)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 211
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"allratings_new"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "pyout",
"prompt_number": 212,
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"Index: 977089 entries, Toy Story (1995) to Contender, The (2000)\n",
"Data columns:\n",
"uid 977089 non-null values\n",
"rating 977089 non-null values\n",
"dtypes: int64(2)"
]
}
],
"prompt_number": 212
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Lets look at a litte slice of our dataset so far:"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"allratings_new[:10]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<div style=\"max-height:1000px;max-width:1500px;overflow:auto;\">\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>uid</th>\n",
" <th>rating</th>\n",
" </tr>\n",
" <tr>\n",
" <th>title</th>\n",
" <th></th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td><strong>Toy Story (1995)</strong></td>\n",
" <td> 1</td>\n",
" <td> 5</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>Toy Story (1995)</strong></td>\n",
" <td> 6</td>\n",
" <td> 4</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>Toy Story (1995)</strong></td>\n",
" <td> 8</td>\n",
" <td> 4</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>Toy Story (1995)</strong></td>\n",
" <td> 9</td>\n",
" <td> 5</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>Toy Story (1995)</strong></td>\n",
" <td> 10</td>\n",
" <td> 5</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>Toy Story (1995)</strong></td>\n",
" <td> 18</td>\n",
" <td> 4</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>Toy Story (1995)</strong></td>\n",
" <td> 19</td>\n",
" <td> 5</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>Toy Story (1995)</strong></td>\n",
" <td> 21</td>\n",
" <td> 3</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>Toy Story (1995)</strong></td>\n",
" <td> 23</td>\n",
" <td> 4</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>Toy Story (1995)</strong></td>\n",
" <td> 26</td>\n",
" <td> 3</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"output_type": "pyout",
"prompt_number": 213,
"text": [
" uid rating\n",
"title \n",
"Toy Story (1995) 1 5\n",
"Toy Story (1995) 6 4\n",
"Toy Story (1995) 8 4\n",
"Toy Story (1995) 9 5\n",
"Toy Story (1995) 10 5\n",
"Toy Story (1995) 18 4\n",
"Toy Story (1995) 19 5\n",
"Toy Story (1995) 21 3\n",
"Toy Story (1995) 23 4\n",
"Toy Story (1995) 26 3"
]
}
],
"prompt_number": 213
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Adding Avg. User Ratings column \n",
"---\n",
"\n",
"I would like add a column for the average rating for each user across all movies that user rated. This is not required for the Pearson \n",
"correlation, but is needed by the Adjusted Cosine Similary metric, which we will explore later. To do this lets aggregate the ratings \n",
"of the user from the ratings table. \n"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"avgUserRating = ratings.groupby('uid').mean().drop(['mid','timestamp'],axis=1)\n",
"avgUserRating.columns = ['avgRating']\n",
"avgUserRating[:10]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<div style=\"max-height:1000px;max-width:1500px;overflow:auto;\">\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>avgRating</th>\n",
" </tr>\n",
" <tr>\n",
" <th>uid</th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td><strong>1</strong></td>\n",
" <td> 4.188679</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2</strong></td>\n",
" <td> 3.713178</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3</strong></td>\n",
" <td> 3.901961</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4</strong></td>\n",
" <td> 4.190476</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5</strong></td>\n",
" <td> 3.146465</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>6</strong></td>\n",
" <td> 3.901408</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>7</strong></td>\n",
" <td> 4.322581</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>8</strong></td>\n",
" <td> 3.884892</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>9</strong></td>\n",
" <td> 3.735849</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>10</strong></td>\n",
" <td> 4.114713</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"output_type": "pyout",
"prompt_number": 214,
"text": [
" avgRating\n",
"uid \n",
"1 4.188679\n",
"2 3.713178\n",
"3 3.901961\n",
"4 4.190476\n",
"5 3.146465\n",
"6 3.901408\n",
"7 4.322581\n",
"8 3.884892\n",
"9 3.735849\n",
"10 4.114713"
]
}
],
"prompt_number": 214
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Lets merge this with the `allratings_new` table. "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"tura = pd.merge(allratings_new.reset_index(),avgUserRating.reset_index())\n",
"tura = tura.set_index('title')\n",
"tura"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "pyout",
"prompt_number": 215,
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"Index: 977089 entries, Toy Story (1995) to Tampopo (1986)\n",
"Data columns:\n",
"uid 977089 non-null values\n",
"rating 977089 non-null values\n",
"avgRating 977089 non-null values\n",
"dtypes: float64(1), int64(2)"
]
}
],
"prompt_number": 215
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"*** \n",
"Creating a heirarchical index \n",
"--- \n",
"We take the above table and reindex it so that we can select by movie title to get a table with columns [uid, rating] for that movie. \n"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"rs = tura.reset_index().set_index(['title','uid'])\n",
"rs.index\n",
"rs.ix['Sudden Death (1995)']#['rating']"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<div style=\"max-height:1000px;max-width:1500px;overflow:auto;\">\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>rating</th>\n",
" <th>avgRating</th>\n",
" </tr>\n",
" <tr>\n",
" <th>uid</th>\n",
" <th></th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td><strong>65</strong></td>\n",
" <td> 5</td>\n",
" <td> 4.347107</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>73</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.364706</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>103</strong></td>\n",
" <td> 4</td>\n",
" <td> 4.052174</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>149</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.940878</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>185</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.588235</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>192</strong></td>\n",
" <td> 1</td>\n",
" <td> 3.091429</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>199</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.276119</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>204</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.556054</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>302</strong></td>\n",
" <td> 1</td>\n",
" <td> 2.869289</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>524</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.608268</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>549</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.756944</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>550</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.578077</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>699</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.053412</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>770</strong></td>\n",
" <td> 2</td>\n",
" <td> 2.935441</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>785</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.235849</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>881</strong></td>\n",
" <td> 2</td>\n",
" <td> 2.935449</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>937</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.732759</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>949</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.929539</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>970</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.149362</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>999</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.186893</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1010</strong></td>\n",
" <td> 1</td>\n",
" <td> 2.475100</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1012</strong></td>\n",
" <td> 1</td>\n",
" <td> 3.363636</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1088</strong></td>\n",
" <td> 1</td>\n",
" <td> 3.337585</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1181</strong></td>\n",
" <td> 4</td>\n",
" <td> 2.815911</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1230</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.936759</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1244</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.381215</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1377</strong></td>\n",
" <td> 2</td>\n",
" <td> 2.821497</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1408</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.139706</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1414</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.783784</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1447</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.238384</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1448</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.775530</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1527</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.153846</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1624</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.005714</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1635</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.780580</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1639</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.658802</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1727</strong></td>\n",
" <td> 4</td>\n",
" <td> 4.035019</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1753</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.936620</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1764</strong></td>\n",
" <td> 4</td>\n",
" <td> 4.091354</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1841</strong></td>\n",
" <td> 2</td>\n",
" <td> 2.718062</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1880</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.344503</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1958</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.274648</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2015</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.127353</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2074</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.472222</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2077</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.230994</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2116</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.555098</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2143</strong></td>\n",
" <td> 1</td>\n",
" <td> 3.125000</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2186</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.441781</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2304</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.722795</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2453</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.534181</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2777</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.498286</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2857</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.159748</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2907</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.293286</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2909</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.822734</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2983</strong></td>\n",
" <td> 5</td>\n",
" <td> 4.363636</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2996</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.146751</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3000</strong></td>\n",
" <td> 1</td>\n",
" <td> 3.264151</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3182</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.078275</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3209</strong></td>\n",
" <td> 1</td>\n",
" <td> 2.060870</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3242</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.590476</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3311</strong></td>\n",
" <td> 2</td>\n",
" <td> 2.778261</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3336</strong></td>\n",
" <td> 2</td>\n",
" <td> 2.748126</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3416</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.578723</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3507</strong></td>\n",
" <td> 1</td>\n",
" <td> 3.261105</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3558</strong></td>\n",
" <td> 3</td>\n",
" <td> 4.310000</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3579</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.323420</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3589</strong></td>\n",
" <td> 2</td>\n",
" <td> 2.494186</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3624</strong></td>\n",
" <td> 1</td>\n",
" <td> 3.985876</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3626</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.598830</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3650</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.560510</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3669</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.194954</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3768</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.359155</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3792</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.576127</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3834</strong></td>\n",
" <td> 4</td>\n",
" <td> 4.254448</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3859</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.414239</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3962</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.471429</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4113</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.515152</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4156</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.780612</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4213</strong></td>\n",
" <td> 4</td>\n",
" <td> 4.060759</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4227</strong></td>\n",
" <td> 3</td>\n",
" <td> 2.701309</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4238</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.424908</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4261</strong></td>\n",
" <td> 1</td>\n",
" <td> 3.187726</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4279</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.373469</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4284</strong></td>\n",
" <td> 2</td>\n",
" <td> 2.743590</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4323</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.576642</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4404</strong></td>\n",
" <td> 1</td>\n",
" <td> 3.067204</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4453</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.145455</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4658</strong></td>\n",
" <td> 1</td>\n",
" <td> 2.375899</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4699</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.213018</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4725</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.158052</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4747</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.466667</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4965</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.111111</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5026</strong></td>\n",
" <td> 2</td>\n",
" <td> 2.858124</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5046</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.649770</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5227</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.159236</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5249</strong></td>\n",
" <td> 1</td>\n",
" <td> 3.263314</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5347</strong></td>\n",
" <td> 1</td>\n",
" <td> 3.129278</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5555</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.114964</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5568</strong></td>\n",
" <td> 4</td>\n",
" <td> 4.041056</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5617</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.540541</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5795</strong></td>\n",
" <td> 1</td>\n",
" <td> 3.056382</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5837</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.895131</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5879</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.781818</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"output_type": "pyout",
"prompt_number": 216,
"text": [
" rating avgRating\n",
"uid \n",
"65 5 4.347107\n",
"73 3 3.364706\n",
"103 4 4.052174\n",
"149 3 3.940878\n",
"185 3 3.588235\n",
"192 1 3.091429\n",
"199 3 3.276119\n",
"204 2 3.556054\n",
"302 1 2.869289\n",
"524 2 3.608268\n",
"549 3 3.756944\n",
"550 3 3.578077\n",
"699 2 3.053412\n",
"770 2 2.935441\n",
"785 4 3.235849\n",
"881 2 2.935449\n",
"937 4 3.732759\n",
"949 3 3.929539\n",
"970 2 3.149362\n",
"999 4 3.186893\n",
"1010 1 2.475100\n",
"1012 1 3.363636\n",
"1088 1 3.337585\n",
"1181 4 2.815911\n",
"1230 2 3.936759\n",
"1244 3 3.381215\n",
"1377 2 2.821497\n",
"1408 2 3.139706\n",
"1414 4 3.783784\n",
"1447 2 3.238384\n",
"1448 2 3.775530\n",
"1527 2 3.153846\n",
"1624 2 3.005714\n",
"1635 2 3.780580\n",
"1639 3 3.658802\n",
"1727 4 4.035019\n",
"1753 4 3.936620\n",
"1764 4 4.091354\n",
"1841 2 2.718062\n",
"1880 2 3.344503\n",
"1958 3 3.274648\n",
"2015 3 3.127353\n",
"2074 2 3.472222\n",
"2077 3 3.230994\n",
"2116 4 3.555098\n",
"2143 1 3.125000\n",
"2186 3 3.441781\n",
"2304 4 3.722795\n",
"2453 3 3.534181\n",
"2777 3 3.498286\n",
"2857 3 3.159748\n",
"2907 3 3.293286\n",
"2909 3 3.822734\n",
"2983 5 4.363636\n",
"2996 2 3.146751\n",
"3000 1 3.264151\n",
"3182 3 3.078275\n",
"3209 1 2.060870\n",
"3242 4 3.590476\n",
"3311 2 2.778261\n",
"3336 2 2.748126\n",
"3416 3 3.578723\n",
"3507 1 3.261105\n",
"3558 3 4.310000\n",
"3579 3 3.323420\n",
"3589 2 2.494186\n",
"3624 1 3.985876\n",
"3626 4 3.598830\n",
"3650 3 3.560510\n",
"3669 2 3.194954\n",
"3768 2 3.359155\n",
"3792 3 3.576127\n",
"3834 4 4.254448\n",
"3859 3 3.414239\n",
"3962 4 3.471429\n",
"4113 4 3.515152\n",
"4156 4 3.780612\n",
"4213 4 4.060759\n",
"4227 3 2.701309\n",
"4238 2 3.424908\n",
"4261 1 3.187726\n",
"4279 3 3.373469\n",
"4284 2 2.743590\n",
"4323 3 3.576642\n",
"4404 1 3.067204\n",
"4453 3 3.145455\n",
"4658 1 2.375899\n",
"4699 3 3.213018\n",
"4725 2 3.158052\n",
"4747 2 3.466667\n",
"4965 4 3.111111\n",
"5026 2 2.858124\n",
"5046 2 3.649770\n",
"5227 3 3.159236\n",
"5249 1 3.263314\n",
"5347 1 3.129278\n",
"5555 3 3.114964\n",
"5568 4 4.041056\n",
"5617 3 3.540541\n",
"5795 1 3.056382\n",
"5837 4 3.895131\n",
"5879 4 3.781818"
]
}
],
"prompt_number": 216
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"rs.ix['Men in Black (1997)'][:10]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<div style=\"max-height:1000px;max-width:1500px;overflow:auto;\">\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>rating</th>\n",
" <th>avgRating</th>\n",
" </tr>\n",
" <tr>\n",
" <th>uid</th>\n",
" <th></th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td><strong>3</strong></td>\n",
" <td> 3</td>\n",
" <td> 3.901961</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.146465</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>7</strong></td>\n",
" <td> 4</td>\n",
" <td> 4.322581</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>8</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.884892</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>10</strong></td>\n",
" <td> 5</td>\n",
" <td> 4.114713</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>13</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.388889</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>15</strong></td>\n",
" <td> 2</td>\n",
" <td> 3.323383</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>17</strong></td>\n",
" <td> 4</td>\n",
" <td> 4.075829</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>18</strong></td>\n",
" <td> 5</td>\n",
" <td> 3.649180</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>19</strong></td>\n",
" <td> 5</td>\n",
" <td> 3.572549</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"output_type": "pyout",
"prompt_number": 217,
"text": [
" rating avgRating\n",
"uid \n",
"3 3 3.901961\n",
"5 4 3.146465\n",
"7 4 4.322581\n",
"8 4 3.884892\n",
"10 5 4.114713\n",
"13 4 3.388889\n",
"15 2 3.323383\n",
"17 4 4.075829\n",
"18 5 3.649180\n",
"19 5 3.572549"
]
}
],
"prompt_number": 217
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Building a Similarity Function \n",
"----\n",
"\n",
"Now, we build the pieces necessary for creating a movie, movie similarity function. "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"mov1 = rs.ix['Jurassic Park (1993)'].reset_index()\n",
"mov2 = rs.ix['Saving Private Ryan (1998)'].reset_index()"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 218
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"mov1"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "pyout",
"prompt_number": 219,
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"Int64Index: 2672 entries, 0 to 2671\n",
"Data columns:\n",
"uid 2672 non-null values\n",
"rating 2672 non-null values\n",
"avgRating 2672 non-null values\n",
"dtypes: float64(1), int64(2)"
]
}
],
"prompt_number": 219
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"mov2"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "pyout",
"prompt_number": 220,
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"Int64Index: 2653 entries, 0 to 2652\n",
"Data columns:\n",
"uid 2653 non-null values\n",
"rating 2653 non-null values\n",
"avgRating 2653 non-null values\n",
"dtypes: float64(1), int64(2)"
]
}
],
"prompt_number": 220
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"An *inner join* on uid is a cute way for getting co-rated (rated by the same user) ratings. "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"mm = pd.merge(mov1,mov2,on='uid').drop('uid',axis=1)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 221
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"mm['rating_x'] = mm['rating_x'].astype('float32')\n",
"mm['rating_y'] = mm['rating_y'].astype('float32')\n",
"mm[:10]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<div style=\"max-height:1000px;max-width:1500px;overflow:auto;\">\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>rating_x</th>\n",
" <th>avgRating_x</th>\n",
" <th>rating_y</th>\n",
" <th>avgRating_y</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td><strong>0</strong></td>\n",
" <td> 5</td>\n",
" <td> 3.713178</td>\n",
" <td> 4</td>\n",
" <td> 3.713178</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>1</strong></td>\n",
" <td> 4</td>\n",
" <td> 4.190476</td>\n",
" <td> 5</td>\n",
" <td> 4.190476</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>2</strong></td>\n",
" <td> 4</td>\n",
" <td> 4.322581</td>\n",
" <td> 5</td>\n",
" <td> 4.322581</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>3</strong></td>\n",
" <td> 5</td>\n",
" <td> 3.884892</td>\n",
" <td> 5</td>\n",
" <td> 3.884892</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>4</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.735849</td>\n",
" <td> 5</td>\n",
" <td> 3.735849</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>5</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.388889</td>\n",
" <td> 4</td>\n",
" <td> 3.388889</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>6</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.323383</td>\n",
" <td> 4</td>\n",
" <td> 3.323383</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>7</strong></td>\n",
" <td> 4</td>\n",
" <td> 4.075829</td>\n",
" <td> 5</td>\n",
" <td> 4.075829</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>8</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.572549</td>\n",
" <td> 4</td>\n",
" <td> 3.572549</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>9</strong></td>\n",
" <td> 4</td>\n",
" <td> 3.741176</td>\n",
" <td> 5</td>\n",
" <td> 3.741176</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"output_type": "pyout",
"prompt_number": 222,
"text": [
" rating_x avgRating_x rating_y avgRating_y\n",
"0 5 3.713178 4 3.713178\n",
"1 4 4.190476 5 4.190476\n",
"2 4 4.322581 5 4.322581\n",
"3 5 3.884892 5 3.884892\n",
"4 4 3.735849 5 3.735849\n",
"5 4 3.388889 4 3.388889\n",
"6 4 3.323383 4 3.323383\n",
"7 4 4.075829 5 4.075829\n",
"8 4 3.572549 4 3.572549\n",
"9 4 3.741176 5 3.741176"
]
}
],
"prompt_number": 222
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"With Pandas getting the **Pearson correlation** is a breeze! "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"pcorr = mm.corr(method='pearson')\n",
"pcorr"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<div style=\"max-height:1000px;max-width:1500px;overflow:auto;\">\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>rating_x</th>\n",
" <th>avgRating_x</th>\n",
" <th>rating_y</th>\n",
" <th>avgRating_y</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <td><strong>rating_x</strong></td>\n",
" <td> 1.000000</td>\n",
" <td> 0.249931</td>\n",
" <td> 0.228763</td>\n",
" <td> 0.249931</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>avgRating_x</strong></td>\n",
" <td> 0.249931</td>\n",
" <td> 1.000000</td>\n",
" <td> 0.229232</td>\n",
" <td> 1.000000</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>rating_y</strong></td>\n",
" <td> 0.228763</td>\n",
" <td> 0.229232</td>\n",
" <td> 1.000000</td>\n",
" <td> 0.229232</td>\n",
" </tr>\n",
" <tr>\n",
" <td><strong>avgRating_y</strong></td>\n",
" <td> 0.249931</td>\n",
" <td> 1.000000</td>\n",
" <td> 0.229232</td>\n",
" <td> 1.000000</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"output_type": "pyout",
"prompt_number": 223,
"text": [
" rating_x avgRating_x rating_y avgRating_y\n",
"rating_x 1.000000 0.249931 0.228763 0.249931\n",
"avgRating_x 0.249931 1.000000 0.229232 1.000000\n",
"rating_y 0.228763 0.229232 1.000000 0.229232\n",
"avgRating_y 0.249931 1.000000 0.229232 1.000000"
]
}
],
"prompt_number": 223
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"pcorr.ix['rating_x']['rating_y']"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "pyout",
"prompt_number": 224,
"text": [
"0.22876340496239664"
]
}
],
"prompt_number": 224
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Pearson Based Movie Similarity\n",
"--- \n",
"\n",
"Putting the above elements together I can now create a Pearson correlation-based moveie similarity function \n"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def moviePairSimilarityPearson(movx, movy, rs,verbose=False):\n",
" m1 = rs.ix[movx].reset_index() \n",
" m2 = rs.ix[movy].reset_index() \n",
" mmerge = pd.merge(m1,m2,on='uid').drop('uid',axis=1)\n",
" mmerge['rating_x'] = mmerge['rating_x'].astype('float32')\n",
" mmerge['rating_y'] = mmerge['rating_y'].astype('float32')\n",
" pcorr = mmerge.corr(method='pearson')\n",
" if verbose: print movx, movy, mmerge\n",
" return pcorr.ix['rating_x']['rating_y']"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 225
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"moviePairSimilarityPearson(movie_titles[23],movie_titles[10],rs,verbose=False)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "pyout",
"prompt_number": 226,
"text": [
"0.31345982510030213"
]
}
],
"prompt_number": 226
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Adjusted Cosine Based Similarity \n",
"--- \n",
"\n",
"This is a variation based on *Serwer et al.* http://www.ra.ethz.ch/cdstore/www10/papers/pdf/p519.pdf using the adjusted cosine function. \n",
"$$ \\frac{ \\sum__{u \\in U} (R_{u,i} - \\bar{R_u})(R_{u,j} - \\bar{R_u})}{\\sqrt{ \\sum (R_{u,i} - \\bar{R_u})^2}\\sqrt{ \\sum (R_{u,j} - \\bar{R_u})^2} } $$\n"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def moviePairSimilarityAdjCos(movx, movy, rs,verbose=False):\n",
" m1 = rs.ix[movx].reset_index() \n",
" m2 = rs.ix[movy].reset_index() \n",
" mm = pd.merge(m1,m2,on='uid').drop('uid',axis=1)\n",
" num = (mm['rating_x'] - mm['avgRating_x']).dot((mm['rating_y'] - mm['avgRating_y']))\n",
" den1 = (mm['rating_x'] - mm['avgRating_x']).dot((mm['rating_x'] - mm['avgRating_x']))\n",
" den2 = (mm['rating_y'] - mm['avgRating_y']).dot((mm['rating_y'] - mm['avgRating_y']))\n",
"\n",
" sim = num/numpy.sqrt(den1*den2)\n",
" if sim > 1.0: sim = 1.0 \n",
" return sim "
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 227
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import numpy\n",
"def bestMatches(movx, movie_tls,rs,nTop=100, simFunc = moviePairSimilarityPearson):\n",
" score = []\n",
" for movy in movie_tls:\n",
" #print movy\n",
" if movx == movy: continue\n",
" corr = simFunc(movx, movy, rs)\n",
" if pd.isnull(corr): continue\n",
" score += [(corr, movy.decode('unicode-escape'))] \n",
" score.sort()\n",
" score.reverse()\n",
" return score[0:nTop]"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 228
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"time score = bestMatches('Deer Hunter, The (1978)', movie_titles,rs)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"CPU times: user 59.75 s, sys: 0.19 s, total: 59.94 s\n",
"Wall time: 59.98 s\n"
]
}
],
"prompt_number": 229
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"score"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "pyout",
"prompt_number": 230,
"text": [
"[(0.72040000656691172, u'Guinevere (1999)'),\n",
" (0.7096661947545746, u'Map of the World, A (1999)'),\n",
" (0.70808645033567741, u'It Came from Beneath the Sea (1955)'),\n",
" (0.68519671766984935, u'Bank Dick, The (1940)'),\n",
" (0.68290059141067172, u'General, The (1998)'),\n",
" (0.6773411933868696, u'Going My Way (1944)'),\n",
" (0.66237952453807258, u'Bride of the Monster (1956)'),\n",
" (0.65561006810718592, u'Andre (1994)'),\n",
" (0.65062675646110124, u'Saboteur (1942)'),\n",
" (0.64236405483757286, u'Bye Bye, Love (1995)'),\n",
" (0.62709155667593708, u'Good Earth, The (1937)'),\n",
" (0.62552033799622597, u'Destination Moon (1950)'),\n",
" (0.62457415833267238, u'Down in the Delta (1998)'),\n",
" (0.6175499629807264, u'Ninotchka (1939)'),\n",
" (0.61266313250846061, u'Duel in the Sun (1946)'),\n",
" (0.60704525120280273, u'Repulsion (1965)'),\n",
" (0.59878684908290802, u'Sanjuro (1962)'),\n",
" (0.58662343545497486, u'Prince of the City (1981)'),\n",
" (0.58642924708134436, u'Frankenstein Meets the Wolf Man (1943)'),\n",
" (0.584518768471054, u'Carnival of Souls (1962)'),\n",
" (0.58112810762940426, u'Sunshine (1999)'),\n",
" (0.57845353732929095, u'It Came from Outer Space (1953)'),\n",
" (0.57544630581407419, u'Long Walk Home, The (1990)'),\n",
" (0.57004087035588769, u'Return of the Fly (1959)'),\n",
" (0.56932079497565802, u'Killer, The (Die xue shuang xiong) (1989)'),\n",
" (0.56729534576268936, u'House of the Spirits, The (1993)'),\n",
" (0.56017489980125601, u'Trial, The (Le Proc\\xe8s) (1963)'),\n",
" (0.55797924072492511,\n",
" u'Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)'),\n",
" (0.55301956479715642, u'Sugarland Express, The (1974)'),\n",
" (0.54630664158851105, u'Farinelli: il castrato (1994)'),\n",
" (0.54617513401994722,\n",
" u'Fantastic Planet, The (La Plan\\xe8te sauvage) (1973)'),\n",
" (0.53851196036005333, u'Chungking Express (1994)'),\n",
" (0.53357837507993255, u'House Party 2 (1991)'),\n",
" (0.53263053965876617, u'Van, The (1996)'),\n",
" (0.53241390564966795, u'Carrington (1995)'),\n",
" (0.529808066253034, u'Bridge at Remagen, The (1969)'),\n",
" (0.52656766771370489, u'Crucible, The (1996)'),\n",
" (0.52629989901984342, u'Murder, My Sweet (1944)'),\n",
" (0.52556544432949681, u\"All the King's Men (1949)\"),\n",
" (0.52450195448557069, u'Red Sorghum (Hong Gao Liang) (1987)'),\n",
" (0.52101192016201348, u'Holy Smoke (1999)'),\n",
" (0.51608782605151282, u'Brokedown Palace (1999)'),\n",
" (0.515841221121351, u'Marty (1955)'),\n",
" (0.51576899775442131, u'Fighting Seabees, The (1944)'),\n",
" (0.51214446752571519, u'Whatever (1998)'),\n",
" (0.51082644554829892, u'Faster Pussycat! Kill! Kill! (1965)'),\n",
" (0.50877005128137509, u'House of Frankenstein (1944)'),\n",
" (0.50709719633499062, u'Girlfight (2000)'),\n",
" (0.50672844621884616, u'Invisible Man, The (1933)'),\n",
" (0.50664915892853168, u\"Wes Craven's New Nightmare (1994)\"),\n",
" (0.50593744301616372, u'187 (1997)'),\n",
" (0.5026246899500344, u'Tex (1982)'),\n",
" (0.50065652153557327, u'Taking of Pelham One Two Three, The (1974)'),\n",
" (0.50001156965511029, u'Madame Sousatzka (1988)'),\n",
" (0.49793634606326415, u'True Crime (1995)'),\n",
" (0.4903332116500338, u'Suspicion (1941)'),\n",
" (0.49025023976741067, u'Bless the Child (2000)'),\n",
" (0.48720657037290932, u'Outside Providence (1999)'),\n",
" (0.48474246994898695, u'Coming Home (1978)'),\n",
" (0.48328498581179685, u'Mummy, The (1959)'),\n",
" (0.48200696640357771, u\"She's So Lovely (1997)\"),\n",
" (0.48191825736121108, u'Killing Fields, The (1984)'),\n",
" (0.47962098975636341, u'Cry in the Dark, A (1988)'),\n",
" (0.47907921311958807, u'Clockers (1995)'),\n",
" (0.47849054439508332, u'Big Country, The (1958)'),\n",
" (0.47761497616186926, u'Children of the Damned (1963)'),\n",
" (0.47534072881784528, u'How to Make an American Quilt (1995)'),\n",
" (0.47399704916210089, u'Masque of the Red Death, The (1964)'),\n",
" (0.47378507247519402, u'Manon of the Spring (Manon des sources) (1986)'),\n",
" (0.47128818643447057, u'Geronimo: An American Legend (1993)'),\n",
" (0.47062717121619646, u'Nineteen Eighty-Four (1984)'),\n",
" (0.4680548967049587, u'Dersu Uzala (1974)'),\n",
" (0.46692263096638603, u'Blue in the Face (1995)'),\n",
" (0.46636456273214061, u'Flying Tigers (1942)'),\n",
" (0.46415947199644159, u'Gingerbread Man, The (1998)'),\n",
" (0.46020293675043689, u\"They Shoot Horses, Don't They? (1969)\"),\n",
" (0.46000832095241295, u'Picnic (1955)'),\n",
" (0.45650898242085874, u'Wings of the Dove, The (1997)'),\n",
" (0.45584980799007374,\n",
" u'Final Conflict, The (a.k.a. Omen III: The Final Conflict) (1981)'),\n",
" (0.45570760383539738, u'Phantoms (1998)'),\n",
" (0.45523323128545995, u'Lifeboat (1944)'),\n",
" (0.45305973659729831, u'Raven, The (1963)'),\n",
" (0.45216509937499233, u'Long Goodbye, The (1973)'),\n",
" (0.451538810541803, u'Last Detail, The (1973)'),\n",
" (0.44622877498452035, u'Spellbound (1945)'),\n",
" (0.44469966399810401, u'Terms of Endearment (1983)'),\n",
" (0.44394960846425152, u'Love and Basketball (2000)'),\n",
" (0.44337032668173454, u\"'Night Mother (1986)\"),\n",
" (0.44253720601966473, u'Dracula (1931)'),\n",
" (0.44136741475237468, u'Pallbearer, The (1996)'),\n",
" (0.44102642817049831, u'Distinguished Gentleman, The (1992)'),\n",
" (0.43974782052737277, u'For Whom the Bell Tolls (1943)'),\n",
" (0.43929768510697947, u'Governess, The (1998)'),\n",
" (0.43850657857392222, u'Mis\\xe9rables, Les (1995)'),\n",
" (0.43779402783218158, u'Here on Earth (2000)'),\n",
" (0.43669144466767074, u'Romper Stomper (1992)'),\n",
" (0.43609187753530676, u'Wrong Man, The (1956)'),\n",
" (0.43539052198925687, u\"Smilla's Sense of Snow (1997)\"),\n",
" (0.43474525463323571, u'Bad Seed, The (1956)'),\n",
" (0.43332232846155949, u'Bread and Chocolate (Pane e cioccolata) (1973)')]"
]
}
],
"prompt_number": 230
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"time score2 = bestMatches( 'Sudden Death (1995)', movie_titles,rs,simFunc = moviePairSimilarityAdjCos,nTop=1000)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"CPU times: user 55.71 s, sys: 0.14 s, total: 55.85 s\n",
"Wall time: 55.85 s\n"
]
}
],
"prompt_number": 231
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Similarity Matrix \n",
"----\n",
"\n",
"Now, we build the item-item similarity matrix. This can be a long job, so I would do it in chunks over multiple processors. The `iStart` and `iStop` params\n",
"let me chose the chunk I want to work on. Note that I use a unicode-decode option so that the table can later be dumped in a JSON format. \n"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def makeSimilarityTable(movie_tls, rs,n=1000, simFunc = moviePairSimilarityAdjCos,iStart=0, iStop=None):\n",
"\tscores = {}\n",
"\tif iStop == None:\n",
"\t\tiStop = len(movie_tls)\n",
"\n",
"\tfor movx in movie_tls[iStart:iStop]:\n",
"\t\tscore = bestMatches(movx, movie_tls,rs,nTop=n, simFunc = simFunc)\n",
"\t\tscores[movx.decode('unicode-escape')] = score\n",
"\n",
"\treturn scores "
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 232
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"I ran this on a 12 core workstation, and later combined the dicts into a single pickle file. Now, I will use the precomputed similarity table to recommend movies to a user. \n",
"\n",
"First, I need some ratings from a user. Lets chose a random user from our database. \n"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"simTable = pickle.load(open('./movieSimilarityMatchesCombined.pkl'))"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 339
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"ur = tura.reset_index().set_index('uid')"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 233
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"testRatings = ur.ix[45][:100].drop('avgRating',axis=1)\n",
"otherRatings = ur.ix[45][100:].drop('avgRating',axis=1)\n",
"testRatings.shape,otherRatings.shape"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "pyout",
"prompt_number": 378,
"text": [
"((100, 2), (175, 2))"
]
}
],
"prompt_number": 378
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import pickle\n",
"def recommendMovies(userRatings,simTable):\n",
" \n",
" scores = {} \n",
" totalSim = {} \n",
" hits = {}\n",
" for (item, rating) in zip(userRatings.title, userRatings.rating): \n",
" for (similarity, item2) in simTable[item]:\n",
" if item2 in userRatings: continue \n",
" scores.setdefault(item2,0) \n",
" scores[item2] += similarity*rating \n",
" totalSim.setdefault(item2,0) \n",
" totalSim[item2] += similarity\n",
" hits.setdefault(item2,0) \n",
" hits[item2] += 1\n",
" for tit, hit in hits.items():\n",
" if hit < 20:\n",
" scores.pop(tit)\n",
" hits.pop(tit)\n",
" totalSim.pop(tit)\n",
" \n",
" rankings = [(score/totalSim[item], item) for item, score in scores.items()]\n",
" rankings.sort()\n",
" rankings.reverse()\n",
" return rankings, hits "
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 379
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"rankings, hits = recommendMovies(testRatings,simTable)\n",
"#hits\n",
"for score, title in rankings:\n",
" print score, title, hits[title]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"3.87024583871 Risky Business (1983) 40\n",
"3.78015508174 Contact (1997) 37\n",
"3.77768596683 Fatal Attraction (1987) 28\n",
"3.77564198544 Hud (1963) 37\n",
"3.75583427069 Out of Africa (1985) 44\n",
"3.74259815572 Boys from Brazil, The (1978) 41\n",
"3.74223291923 Thomas Crown Affair, The (1999) 35\n",
"3.72729877725 Heaven Can Wait (1978) 46\n",
"3.72383543959 Brief Encounter (1946) 37\n",
"3.72316955857 Ghost and Mrs. Muir, The (1947) 48\n",
"3.70752162039 Keeping the Faith (2000) 41\n",
"3.70514070171 Crimson Tide (1995) 38\n",
"3.70404948436 My Favorite Year (1982) 42\n",
"3.70264877532 Shane (1953) 42\n",
"3.69377524357 Dead Again (1991) 49\n",
"3.6928643141 Gone with the Wind (1939) 41\n",
"3.68558875745 Rosemary's Baby (1968) 25\n",
"3.68405875759 Adventures of Robin Hood, The (1938) 44\n",
"3.68322467667 Face in the Crowd, A (1957) 42\n",
"3.68046755857 Christmas Carol, A (1938) 47\n",
"3.67636534453 Sleepless in Seattle (1993) 43\n",
"3.67511745408 If.... (1968) 47\n",
"3.67438502443 My Fair Lady (1964) 43\n",
"3.67192393146 Eat Drink Man Woman (1994) 45\n",
"3.67066400109 Little Mermaid, The (1989) 48\n",
"3.67041407768 Defending Your Life (1991) 38\n",
"3.66789984653 Cocoon (1985) 42\n",
"3.6650543828 Mary Poppins (1964) 44\n",
"3.66407640136 Planet of the Apes (1968) 34\n",
"3.66361761287 Once Upon a Time in America (1984) 37\n",
"3.66279951541 American in Paris, An (1951) 41\n",
"3.66269800974 Melvin and Howard (1980) 36\n",
"3.66265773975 Bell, Book and Candle (1958) 49\n",
"3.66254044086 Star Trek: First Contact (1996) 39\n",
"3.66234526204 Murder, My Sweet (1944) 44\n",
"3.65883430545 Born Yesterday (1950) 42\n",
"3.65856017961 Top Hat (1935) 44\n",
"3.65834013898 Clueless (1995) 44\n",
"3.65814751026 Aladdin (1992) 45\n",
"3.65471430979 Cabaret (1972) 40\n",
"3.65381610767 Star Trek IV: The Voyage Home (1986) 41\n",
"3.65139133945 Man Who Would Be King, The (1975) 44\n",
"3.65022792695 From Russia with Love (1963) 43\n",
"3.64893528836 Notting Hill (1999) 51\n",
"3.6483606395 Big Chill, The (1983) 48\n",
"3.64719548013 Help! (1965) 35\n",
"3.64704196005 Schindler's List (1993) 46\n",
"3.64572648132 Atlantic City (1980) 39\n",
"3.64337024527 My Man Godfrey (1957) 38\n",
"3.64264839802 Harvey (1950) 47\n",
"3.64176643808 League of Their Own, A (1992) 43\n",
"3.64134795485 Cinderella (1950) 48\n",
"3.63976680443 Shine (1996) 42\n",
"3.63729552929 Miracle on 34th Street (1947) 47\n",
"3.63707570842 Pale Rider (1985) 34\n",
"3.63572604744 Sabrina (1954) 49\n",
"3.63340300885 Dave (1993) 49\n",
"3.63307612553 Erin Brockovich (2000) 48\n",
"3.63261449959 Romancing the Stone (1984) 42\n",
"3.6313387091 Buddy Holly Story, The (1978) 48\n",
"3.63010927519 Parenthood (1989) 44\n",
"3.62978732738 Poltergeist (1982) 42\n",
"3.62972132923 My Cousin Vinny (1992) 45\n",
"3.62938661811 Moonstruck (1987) 46\n",
"3.62865153289 Old Yeller (1957) 45\n",
"3.62835478622 Red Rock West (1992) 48\n",
"3.62614432035 Shall We Dance? (1937) 44\n",
"3.6255604852 American Graffiti (1973) 45\n",
"3.62520397411 Green Mile, The (1999) 42\n",
"3.6251730761 Shadow of a Doubt (1943) 46\n",
"3.62499940948 Peter Pan (1953) 42\n",
"3.62476527728 Mrs. Brown (Her Majesty, Mrs. Brown) (1997) 43\n",
"3.62439399111 His Girl Friday (1940) 41\n",
"3.62277785648 Stalag 17 (1953) 37\n",
"3.62272136773 Wizard of Oz, The (1939) 43\n",
"3.62236562028 Babe (1995) 44\n",
"3.62197603586 Casablanca (1942) 45\n",
"3.62110952681 Fried Green Tomatoes (1991) 52\n",
"3.62096761509 Stripes (1981) 35\n",
"3.62083667907 Working Girl (1988) 39\n",
"3.61999604242 Back to the Future (1985) 48\n",
"3.61922940903 Goodbye Girl, The (1977) 47\n",
"3.61882326533 Funny Face (1957) 44\n",
"3.61609994458 Murphy's Romance (1985) 44\n",
"3.61563017434 Palm Beach Story, The (1942) 38\n",
"3.61457781656 Shop Around the Corner, The (1940) 45\n",
"3.61442912256 To Be or Not to Be (1942) 50\n",
"3.61318622937 Jesus' Son (1999) 37\n",
"3.61313031267 Sound of Music, The (1965) 47\n",
"3.61308362222 One False Move (1991) 44\n",
"3.61104509117 M*A*S*H (1970) 43\n",
"3.61007871046 Breakfast Club, The (1985) 48\n",
"3.6099145746 Arsenic and Old Lace (1944) 45\n",
"3.60797804536 Thin Blue Line, The (1988) 42\n",
"3.60776783064 My Man Godfrey (1936) 43\n",
"3.60713196629 Guns of Navarone, The (1961) 46\n",
"3.60669160069 Singin' in the Rain (1952) 43\n",
"3.60660939313 Big (1988) 47\n",
"3.6056899848 Shallow Grave (1994) 42\n",
"3.60550826924 West Side Story (1961) 45\n",
"3.60541746229 Roman Holiday (1953) 47\n",
"3.60484912119 Thin Man, The (1934) 44\n",
"3.60484006706 King and I, The (1956) 41\n",
"3.60422679887 Lady Eve, The (1941) 42\n",
"3.60354225833 Tao of Steve, The (2000) 44\n",
"3.60205721212 Midnight Run (1988) 41\n",
"3.60167431551 Father of the Bride (1950) 50\n",
"3.60125481441 Shall We Dance? (Shall We Dansu?) (1996) 39\n",
"3.60081483531 Last Emperor, The (1987) 43\n",
"3.60059485234 Charade (1963) 47\n",
"3.59939815548 Quiet Man, The (1952) 51\n",
"3.59836019974 Hunt for Red October, The (1990) 47\n",
"3.59823048436 Men in Black (1997) 36\n",
"3.59802888409 Shakespeare in Love (1998) 49\n",
"3.59782036945 Mansfield Park (1999) 51\n",
"3.59770754929 Rebel Without a Cause (1955) 41\n",
"3.59717580565 Four Weddings and a Funeral (1994) 48\n",
"3.59692584966 On Golden Pond (1981) 49\n",
"3.59673580246 When Harry Met Sally... (1989) 47\n",
"3.59578956673 Gypsy (1962) 45\n",
"3.59578525932 Last Detail, The (1973) 43\n",
"3.59576701116 It Happened One Night (1934) 46\n",
"3.59554115934 Children of Paradise (Les enfants du paradis) (1945) 37\n",
"3.59452174431 American President, The (1995) 43\n",
"3.59401581456 Odd Couple, The (1968) 46\n",
"3.59357727257 Thelma & Louise (1991) 46\n",
"3.59350879468 Notorious (1946) 42\n",
"3.59350608609 Mr. Smith Goes to Washington (1939) 45\n",
"3.59175550909 Full Monty, The (1997) 47\n",
"3.59137409458 What's Love Got to Do with It? (1993) 47\n",
"3.59134220886 Lady and the Tramp (1955) 45\n",
"3.58826710654 Lion King, The (1994) 42\n",
"3.58677461508 Strictly Ballroom (1992) 45\n",
"3.58674280274 You Can't Take It With You (1938) 46\n",
"3.58632040887 Toy Story 2 (1999) 46\n",
"3.58602762088 Heart and Souls (1993) 38\n",
"3.5858590921 People vs. Larry Flynt, The (1996) 52\n",
"3.58560070506 Manchurian Candidate, The (1962) 46\n",
"3.58552847863 It's a Wonderful Life (1946) 50\n",
"3.58515699894 Apollo 13 (1995) 45\n",
"3.58442438163 Sneakers (1992) 41\n",
"3.58434968129 To Catch a Thief (1955) 46\n",
"3.58253204732 Body Heat (1981) 41\n",
"3.58247256784 F/X (1986) 27\n",
"3.58224752004 Gaslight (1944) 42\n",
"3.58125043842 Trust (1990) 40\n",
"3.58125006619 Witness (1985) 47\n",
"3.58122620584 In the Name of the Father (1993) 38\n",
"3.58063843742 African Queen, The (1951) 41\n",
"3.58002358346 Gods and Monsters (1998) 44\n",
"3.57901372324 Primal Fear (1996) 47\n",
"3.57738010604 Vanya on 42nd Street (1994) 36\n",
"3.57725305472 Terminator, The (1984) 43\n",
"3.5765631628 Black Beauty (1994) 43\n",
"3.57634061134 White Christmas (1954) 45\n",
"3.57627641811 42 Up (1998) 42\n",
"3.57562952544 Fugitive, The (1993) 46\n",
"3.57479616543 Joy Luck Club, The (1993) 46\n",
"3.57432011203 Women on the Verge of a Nervous Breakdown (1988) 43\n",
"3.57416792268 Sullivan's Travels (1942) 42\n",
"3.5740141337 Swept Away (Travolti da un insolito destino nell'azzurro mare d'Agosto) (1975) 39\n",
"3.574007164 Close Encounters of the Third Kind (1977) 46\n",
"3.5734089757 Grand Hotel (1932) 51\n",
"3.57330568774 Treasure of the Sierra Madre, The (1948) 40\n",
"3.57310132048 Pretty Woman (1990) 40\n",
"3.57301129428 Bull Durham (1988) 46\n",
"3.57250782905 All About Eve (1950) 45\n",
"3.57227412881 Breakfast at Tiffany's (1961) 48\n",
"3.57206911573 Sting, The (1973) 41\n",
"3.5719640229 Women, The (1939) 42\n",
"3.57185503224 Big Sleep, The (1946) 43\n",
"3.5716776878 Next Stop, Wonderland (1998) 43\n",
"3.57164991139 Metropolis (1926) 43\n",
"3.57163175392 Gladiator (2000) 38\n",
"3.5712853569 Guys and Dolls (1955) 42\n",
"3.5711395042 Jerry Maguire (1996) 46\n",
"3.57099396895 Persuasion (1995) 46\n",
"3.57065348578 Lethal Weapon (1987) 36\n",
"3.56970528179 Living in Oblivion (1995) 40\n",
"3.56966713945 Butch Cassidy and the Sundance Kid (1969) 43\n",
"3.56946152662 Lady Vanishes, The (1938) 43\n",
"3.56936032367 Ever After: A Cinderella Story (1998) 47\n",
"3.56928575633 Willy Wonka and the Chocolate Factory (1971) 46\n",
"3.56894214348 Ninotchka (1939) 48\n",
"3.5689240414 Mildred Pierce (1945) 44\n",
"3.56887290013 Where Eagles Dare (1969) 45\n",
"3.56836801379 From Here to Eternity (1953) 43\n",
"3.56818286873 Killing, The (1956) 42\n",
"3.56758598034 Twin Falls Idaho (1999) 43\n",
"3.56622663213 Producers, The (1968) 43\n",
"3.56619461407 Star Wars: Episode IV - A New Hope (1977) 45\n",
"3.56613495148 Apartment, The (1960) 43\n",
"3.56613105285 General, The (1927) 37\n",
"3.5660319161 Bringing Up Baby (1938) 44\n",
"3.56589496947 Hard Day's Night, A (1964) 45\n",
"3.56575968322 Speed (1994) 39\n",
"3.56533468138 Toy Story (1995) 48\n",
"3.5646236712 Indiana Jones and the Last Crusade (1989) 48\n",
"3.56454199773 Beauty and the Beast (1991) 49\n",
"3.56407480289 Band Wagon, The (1953) 45\n",
"3.56370356918 Sixth Sense, The (1999) 46\n",
"3.56282953454 Commitments, The (1991) 44\n",
"3.56277117036 Hard 8 (a.k.a. Sydney, a.k.a. Hard Eight) (1996) 45\n",
"3.5621529697 Kramer Vs. Kramer (1979) 49\n",
"3.5620766069 39 Steps, The (1935) 44\n",
"3.56198929521 King Kong (1933) 41\n",
"3.56164341526 Topsy-Turvy (1999) 34\n",
"3.56093087366 Vertigo (1958) 45\n",
"3.55995204286 Day the Earth Stood Still, The (1951) 42\n",
"3.55985882268 Harold and Maude (1971) 42\n",
"3.55910289378 Open Your Eyes (Abre los ojos) (1997) 48\n",
"3.55854819095 North by Northwest (1959) 48\n",
"3.55848226416 Maltese Falcon, The (1941) 47\n",
"3.55812501838 Galaxy Quest (1999) 45\n",
"3.55759250773 King of Masks, The (Bian Lian) (1996) 48\n",
"3.55694040388 Double Indemnity (1944) 45\n",
"3.55642711627 Birdy (1984) 41\n",
"3.55637321948 Bound (1996) 45\n",
"3.5563667353 Great Escape, The (1963) 45\n",
"3.55606459401 Best Years of Our Lives, The (1946) 42\n",
"3.55596694007 Strangers on a Train (1951) 43\n",
"3.55567468883 Marty (1955) 48\n",
"3.55544288248 Marathon Man (1976) 47\n",
"3.55468129063 Sense and Sensibility (1995) 49\n",
"3.55454401678 Dr. No (1962) 43\n",
"3.55375267502 Jurassic Park (1993) 39\n",
"3.55328854611 Ideal Husband, An (1999) 50\n",
"3.55318803474 Mrs. Miniver (1942) 50\n",
"3.5526845995 Children of a Lesser God (1986) 56\n",
"3.55225660786 Starman (1984) 34\n",
"3.55215233009 Central Station (Central do Brasil) (1998) 47\n",
"3.55158906464 Pleasantville (1998) 47\n",
"3.5514783612 Last Supper, The (1995) 43\n",
"3.55147147812 Run Lola Run (Lola rennt) (1998) 47\n",
"3.55033748839 Dersu Uzala (1974) 42\n",
"3.54949857252 Fish Called Wanda, A (1988) 46\n",
"3.54938114166 Last of the Mohicans, The (1992) 44\n",
"3.54851830818 Wings of the Dove, The (1997) 39\n",
"3.54806995702 Pinocchio (1940) 46\n",
"3.54765597579 Lost Weekend, The (1945) 46\n",
"3.54693659274 Die Hard (1988) 44\n",
"3.54611129002 Mulan (1998) 50\n",
"3.54610185346 Mister Roberts (1955) 44\n",
"3.5460810139 Some Like It Hot (1959) 44\n",
"3.54595700825 Safe (1995) 35\n",
"3.54560014622 Little Women (1994) 52\n",
"3.54465675583 E.T. the Extra-Terrestrial (1982) 46\n",
"3.54430509815 Raiders of the Lost Ark (1981) 47\n",
"3.54401907085 To Kill a Mockingbird (1962) 45\n",
"3.54360698474 French Connection, The (1971) 42\n",
"3.54351780017 In the Heat of the Night (1967) 43\n",
"3.54339188475 Driving Miss Daisy (1989) 51\n",
"3.54306404508 Conversation, The (1974) 43\n",
"3.54293220967 Lucas (1986) 43\n",
"3.54162680363 Hidden, The (1987) 43\n",
"3.54162658477 Graduate, The (1967) 44\n",
"3.54097793852 Three Colors: Blue (1993) 42\n",
"3.53966304062 Philadelphia Story, The (1940) 45\n",
"3.53953254901 Rear Window (1954) 47\n",
"3.53918669839 Midnight Express (1978) 47\n",
"3.53910500149 Haunting, The (1963) 42\n",
"3.5385246881 Hoosiers (1986) 43\n",
"3.53789551855 Auntie Mame (1958) 48\n",
"3.53659182251 Grapes of Wrath, The (1940) 45\n",
"3.53634445387 Manon of the Spring (Manon des sources) (1986) 45\n",
"3.53631561434 As Good As It Gets (1997) 50\n",
"3.53621469811 Life Is Beautiful (La Vita \u00e8 bella) (1997) 50\n",
"3.53575356064 L.A. Confidential (1997) 48\n",
"3.53551392834 Repulsion (1965) 46\n",
"3.53504191814 Amadeus (1984) 47\n",
"3.53394126182 Dangerous Liaisons (1988) 44\n",
"3.53293031002 On the Waterfront (1954) 38\n",
"3.53279851177 101 Dalmatians (1961) 50\n",
"3.53218420752 Cape Fear (1962) 42\n",
"3.5313360623 Gay Divorcee, The (1934) 44\n",
"3.53088437784 October Sky (1999) 52\n",
"3.53075723006 Place in the Sun, A (1951) 49\n",
"3.5307519789 Superman (1978) 39\n",
"3.53067867286 Ghostbusters (1984) 45\n",
"3.53065303897 Much Ado About Nothing (1993) 52\n",
"3.5305213925 Nights of Cabiria (Le Notti di Cabiria) (1957) 36\n",
"3.53030568684 Man Who Knew Too Much, The (1934) 51\n",
"3.5302716785 Goldfinger (1964) 43\n",
"3.52992466241 Psycho (1960) 46\n",
"3.52984052825 Wrong Trousers, The (1993) 44\n",
"3.52950859685 Hilary and Jackie (1998) 50\n",
"3.5292095253 Bonnie and Clyde (1967) 45\n",
"3.52907812542 Sling Blade (1996) 47\n",
"3.52890172609 Lawrence of Arabia (1962) 43\n",
"3.52881985141 Stand by Me (1986) 51\n",
"3.52869576891 Blood Simple (1984) 40\n",
"3.52835840467 Ferris Bueller's Day Off (1986) 49\n",
"3.52811969444 Right Stuff, The (1983) 47\n",
"3.5279218513 Guess Who's Coming to Dinner (1967) 55\n",
"3.52769075702 Laura (1944) 46\n",
"3.52736032225 Cider House Rules, The (1999) 52\n",
"3.52735066668 Spy Who Loved Me, The (1977) 31\n",
"3.52682184605 High Plains Drifter (1972) 48\n",
"3.52665627948 Man Who Knew Too Much, The (1956) 48\n",
"3.52655336998 Local Hero (1983) 39\n",
"3.52559893073 Chinatown (1974) 45\n",
"3.52491760799 Happy, Texas (1999) 36\n",
"3.524832443 Untouchables, The (1987) 49\n",
"3.52464652509 Last Picture Show, The (1971) 43\n",
"3.5243836787 Star Wars: Episode VI - Return of the Jedi (1983) 46\n",
"3.52389827394 Three Days of the Condor (1975) 48\n",
"3.52373402859 Playing by Heart (1998) 44\n",
"3.52351944529 Grand Canyon (1991) 31\n",
"3.52341836823 Sliding Doors (1998) 49\n",
"3.52317617126 Asphalt Jungle, The (1950) 40\n",
"3.52313056977 Searching for Bobby Fischer (1993) 46\n",
"3.52272198502 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963) 46\n",
"3.52267152261 Inherit the Wind (1960) 50\n",
"3.52255854924 Key Largo (1948) 44\n",
"3.52231025982 South Pacific (1958) 43\n",
"3.52188505623 All the King's Men (1949) 46\n",
"3.52159833013 Kid, The (1921) 47\n",
"3.52152564304 Dirty Dozen, The (1967) 44\n",
"3.52152133404 Usual Suspects, The (1995) 48\n",
"3.52151029163 Breaking Away (1979) 43\n",
"3.5210766806 Snow White and the Seven Dwarfs (1937) 48\n",
"3.52097314625 Mr. Death: The Rise and Fall of Fred A. Leuchter Jr. (1999) 37\n",
"3.52056169451 Bedroom Window, The (1987) 38\n",
"3.52041815005 M (1931) 40\n",
"3.52014510307 Henry V (1989) 46\n",
"3.52012722481 Bug's Life, A (1998) 45\n",
"3.51999581458 Magnolia (1999) 45\n",
"3.51968304368 On the Town (1949) 46\n",
"3.51965806503 Shawshank Redemption, The (1994) 48\n",
"3.51953234591 Say Anything... (1989) 49\n",
"3.51946359909 Gold Rush, The (1925) 41\n",
"3.51931002241 Godfather: Part II, The (1974) 44\n",
"3.5192278203 Richard III (1995) 42\n",
"3.51921311606 Parent Trap, The (1961) 38\n",
"3.51907058747 Philadelphia (1993) 49\n",
"3.51884041064 Grand Illusion (Grande illusion, La) (1937) 37\n",
"3.51850864819 Young Frankenstein (1974) 47\n",
"3.51840012374 12 Angry Men (1957) 43\n",
"3.51725807437 War of the Worlds, The (1953) 44\n",
"3.51686058146 Patton (1970) 42\n",
"3.51669521723 Braveheart (1995) 44\n",
"3.51634401774 Limbo (1999) 47\n",
"3.51633738197 Winnie the Pooh and the Blustery Day (1968) 50\n",
"3.51600649473 Duck Soup (1933) 40\n",
"3.51568016207 One Flew Over the Cuckoo's Nest (1975) 47\n",
"3.51556318308 Boat, The (Das Boot) (1981) 42\n",
"3.51489757572 Citizen Kane (1941) 44\n",
"3.51453451449 Heat (1995) 41\n",
"3.51354325752 Emma (1996) 48\n",
"3.51343945421 Irma la Douce (1963) 51\n",
"3.51323453015 Forrest Gump (1994) 39\n",
"3.51317574029 Christmas Story, A (1983) 47\n",
"3.51204916039 Farewell My Concubine (1993) 42\n",
"3.51171705716 Sleeping Beauty (1959) 50\n",
"3.51134774202 All About My Mother (Todo Sobre Mi Madre) (1999) 48\n",
"3.51122040059 Frankenstein (1931) 40\n",
"3.51006774775 Secret Garden, The (1993) 47\n",
"3.50963207296 Sword in the Stone, The (1963) 48\n",
"3.50959623951 Cool Hand Luke (1967) 45\n",
"3.50933977414 Sixteen Candles (1984) 45\n",
"3.50911601294 Platoon (1986) 50\n",
"3.50901431155 Run Silent, Run Deep (1958) 44\n",
"3.50879287165 Few Good Men, A (1992) 48\n",
"3.50855194364 Rain Man (1988) 51\n",
"3.50826627679 Election (1999) 43\n",
"3.50823540842 Paper Chase, The (1973) 46\n",
"3.50795157393 Wonder Boys (2000) 49\n",
"3.50693697947 Titanic (1997) 34\n",
"3.50609244598 Cyrano de Bergerac (1990) 45\n",
"3.50565044134 Some Folks Call It a Sling Blade (1993) 47\n",
"3.50523748961 Good Will Hunting (1997) 50\n",
"3.50511091467 Blue Angel, The (Blaue Engel, Der) (1930) 38\n",
"3.50451608822 Yellow Submarine (1968) 35\n",
"3.50422533067 Wild Bunch, The (1969) 45\n",
"3.50418689775 Close Shave, A (1995) 44\n",
"3.50397287673 Trading Places (1983) 43\n",
"3.50358777714 Suspicion (1941) 43\n",
"3.50301348817 Dangerous Beauty (1998) 40\n",
"3.50281335606 Color Purple, The (1985) 55\n",
"3.5028005814 Take the Money and Run (1969) 40\n",
"3.50055312488 In the Line of Fire (1993) 44\n",
"3.50048787548 Iron Giant, The (1999) 47\n",
"3.50046544531 Third Man, The (1949) 43\n",
"3.49999284427 American History X (1998) 48\n",
"3.49979367156 Anatomy of a Murder (1959) 42\n",
"3.49885847893 Hurricane, The (1999) 41\n",
"3.49885293304 Gentleman's Agreement (1947) 54\n",
"3.49868576871 Saving Private Ryan (1998) 45\n",
"3.49862396537 Ruby in Paradise (1993) 38\n",
"3.4979557712 High Fidelity (2000) 48\n",
"3.49738378617 Groundhog Day (1993) 49\n",
"3.49722018734 Get Shorty (1995) 42\n",
"3.49708306167 Jaws (1975) 42\n",
"3.49646642003 Hard-Boiled (Lashou shentan) (1992) 44\n",
"3.49589944181 Rocky (1976) 38\n",
"3.49535176799 Amistad (1997) 45\n",
"3.49500896397 Glory (1989) 47\n",
"3.49482804617 Modern Times (1936) 39\n",
"3.49428757492 American Beauty (1999) 48\n",
"3.49427430107 Awakenings (1990) 52\n",
"3.4940106975 Matewan (1987) 42\n",
"3.49381516864 Fast, Cheap & Out of Control (1997) 32\n",
"3.49330345311 Waking Ned Devine (1998) 50\n",
"3.49292060007 Swiss Family Robinson (1960) 50\n",
"3.49284309236 Almost Famous (2000) 51\n",
"3.49281006115 High Noon (1952) 40\n",
"3.49241820732 Jean de Florette (1986) 45\n",
"3.49170951156 Carrie (1976) 31\n",
"3.49151494448 Grand Day Out, A (1992) 41\n",
"3.49145866193 Blazing Saddles (1974) 42\n",
"3.49140604375 SLC Punk! (1998) 43\n",
"3.49133773402 Fantasia (1940) 46\n",
"3.49109304261 Contender, The (2000) 44\n",
"3.49075113011 Princess Bride, The (1987) 50\n",
"3.49043872207 Dark City (1998) 47\n",
"3.4902788055 Papillon (1973) 43\n",
"3.48987862618 Star Wars: Episode V - The Empire Strikes Back (1980) 48\n",
"3.48948756389 Cat on a Hot Tin Roof (1958) 45\n",
"3.48944129751 To Live (Huozhe) (1994) 49\n",
"3.48930958456 City Lights (1931) 40\n",
"3.4891840815 Grifters, The (1990) 36\n",
"3.48915379043 Out of the Past (1947) 39\n",
"3.4887898267 Love and Death (1975) 46\n",
"3.48877516128 Thunderball (1965) 44\n",
"3.4887289824 Bridge on the River Kwai, The (1957) 44\n",
"3.48868033855 Secret of NIMH, The (1982) 49\n",
"3.48861617456 Hamlet (1990) 47\n",
"3.48829696661 Raisin in the Sun, A (1961) 47\n",
"3.48770934559 Godfather, The (1972) 46\n",
"3.48770329769 Adventures of Priscilla, Queen of the Desert, The (1994) 48\n",
"3.48757411104 Who Framed Roger Rabbit? (1988) 41\n",
"3.48692535994 Sunset Blvd. (a.k.a. Sunset Boulevard) (1950) 45\n",
"3.48685536047 Big Country, The (1958) 43\n",
"3.48649841249 Ruthless People (1986) 33\n",
"3.48575345261 Ordinary People (1980) 44\n",
"3.48486925376 Forbidden Planet (1956) 48\n",
"3.48476670731 400 Blows, The (Les Quatre cents coups) (1959) 40\n",
"3.48431850376 Blowup (1966) 32\n",
"3.48379962796 Klute (1971) 32\n",
"3.48379567023 Foreign Correspondent (1940) 52\n",
"3.48359590868 How Green Was My Valley (1941) 47\n",
"3.48335338065 Great Race, The (1965) 40\n",
"3.4818635253 Hustler, The (1961) 43\n",
"3.48155353012 Bicycle Thief, The (Ladri di biciclette) (1948) 41\n",
"3.48132876058 Muppet Christmas Carol, The (1992) 45\n",
"3.48119818314 All Quiet on the Western Front (1930) 45\n",
"3.48061730399 Raise the Red Lantern (1991) 43\n",
"3.48054103989 Beautiful Girls (1996) 50\n",
"3.47996655557 Patriot Games (1992) 35\n",
"3.47978408987 Name of the Rose, The (1986) 45\n",
"3.47950764065 Get Real (1998) 56\n",
"3.47911043122 Romeo and Juliet (1968) 47\n",
"3.47858130594 Streetcar Named Desire, A (1951) 44\n",
"3.47849503009 Apocalypse Now (1979) 43\n",
"3.47763984529 Terms of Endearment (1983) 46\n",
"3.47502886606 Terminator 2: Judgment Day (1991) 48\n",
"3.47489448183 Ben-Hur (1959) 49\n",
"3.47475019529 Bride of Frankenstein (1935) 37\n",
"3.47454737754 Bambi (1942) 51\n",
"3.47450582045 Badlands (1973) 39\n",
"3.4737853099 Elizabeth (1998) 47\n",
"3.47364080473 Kicking and Screaming (1995) 45\n",
"3.47338640955 Circle of Friends (1995) 51\n",
"3.47335813162 Seven Samurai (The Magnificent Seven) (Shichinin no samurai) (1954) 43\n",
"3.47311545472 East of Eden (1955) 44\n",
"3.47302388896 Murder in the First (1995) 45\n",
"3.47275297168 Enchanted April (1991) 48\n",
"3.47269451021 Dogma (1999) 37\n",
"3.4725499814 ...And Justice for All (1979) 39\n",
"3.47242471783 Frequency (2000) 43\n",
"3.47157247347 Wallace & Gromit: The Best of Aardman Animation (1996) 41\n",
"3.47125648028 Dead Man (1995) 39\n",
"3.47109881734 Jungle Book, The (1967) 45\n",
"3.47011909845 Killing Fields, The (1984) 46\n",
"3.46960039234 Rosencrantz and Guildenstern Are Dead (1990) 41\n",
"3.46935679267 Fargo (1996) 47\n",
"3.46906664234 Lifeboat (1944) 50\n",
"3.46854364725 Rebecca (1940) 44\n",
"3.46853612106 Alice in Wonderland (1951) 50\n",
"3.46849029035 Affair to Remember, An (1957) 44\n",
"3.46674215272 Pawnbroker, The (1965) 45\n",
"3.46603118137 Outlaw Josey Wales, The (1976) 41\n",
"3.46474266891 Star Trek: The Wrath of Khan (1982) 38\n",
"3.46380715629 Dead Zone, The (1983) 42\n",
"3.46376600292 Diva (1981) 36\n",
"3.4635070825 Holiday Inn (1942) 49\n",
"3.46319907621 Big Night (1996) 48\n",
"3.46175955637 Red Violin, The (Le Violon rouge) (1998) 50\n",
"3.46168022468 Invasion of the Body Snatchers (1956) 42\n",
"3.46135867354 Nobody's Fool (1994) 50\n",
"3.46135636099 Robin Hood (1973) 55\n",
"3.4607476027 Blade Runner (1982) 44\n",
"3.46052964316 Bread and Chocolate (Pane e cioccolata) (1973) 41\n",
"3.4600490474 Sophie's Choice (1982) 43\n",
"3.45914909797 JFK (1991) 43\n",
"3.45882425363 Great Dictator, The (1940) 44\n",
"3.45880240604 Raging Bull (1980) 42\n",
"3.45829538678 And Now for Something Completely Different (1971) 41\n",
"3.45829224497 Fistful of Dollars, A (1964) 47\n",
"3.45758320638 Touch of Evil (1958) 41\n",
"3.45757454694 Thomas Crown Affair, The (1968) 35\n",
"3.45750509155 Swimming with Sharks (1995) 36\n",
"3.45718707078 Outsiders, The (1983) 40\n",
"3.45697232892 Nikita (La Femme Nikita) (1990) 46\n",
"3.45678496128 Birds, The (1963) 41\n",
"3.45669350233 Urbania (2000) 48\n",
"3.45628151509 Bananas (1971) 36\n",
"3.45542280082 Everest (1998) 41\n",
"3.45457312679 Ghost Dog: The Way of the Samurai (1999) 40\n",
"3.45383545904 GoodFellas (1990) 46\n",
"3.45313172452 Pulp Fiction (1994) 45\n",
"3.45312525017 Song of the South (1946) 44\n",
"3.45310204039 Conformist, The (Il Conformista) (1970) 40\n",
"3.45225456619 Field of Dreams (1989) 50\n",
"3.45181836158 Trekkies (1997) 48\n",
"3.4514614233 Silence of the Lambs, The (1991) 49\n",
"3.45117648078 Three Colors: Red (1994) 45\n",
"3.45078029861 Misery (1990) 39\n",
"3.45060785517 Man for All Seasons, A (1966) 42\n",
"3.45010412131 Tampopo (1986) 40\n",
"3.4496694057 Mutiny on the Bounty (1935) 47\n",
"3.44946682407 Cold Comfort Farm (1995) 45\n",
"3.44893670619 Seventh Seal, The (Sjunde inseglet, Det) (1957) 40\n",
"3.44892736819 Dumbo (1941) 38\n",
"3.44888517986 This Is Spinal Tap (1984) 44\n",
"3.44879723733 Stop Making Sense (1984) 44\n",
"3.44832026122 Verdict, The (1982) 46\n",
"3.4481836141 Stand and Deliver (1987) 51\n",
"3.44778864189 Opposite of Sex, The (1998) 41\n",
"3.44732860597 Natural, The (1984) 43\n",
"3.44695503231 Sleeper (1973) 42\n",
"3.44693925854 Titus (1999) 42\n",
"3.44677219735 Candidate, The (1972) 43\n",
"3.44634629676 Of Mice and Men (1992) 54\n",
"3.44608373226 Peeping Tom (1960) 35\n",
"3.44608026157 Deliverance (1972) 41\n",
"3.44574050004 Scream (1996) 48\n",
"3.44567090037 8 1/2 (1963) 36\n",
"3.44538411198 Croupier (1998) 44\n",
"3.44456330644 Longest Day, The (1962) 38\n",
"3.44449690536 Prick Up Your Ears (1987) 53\n",
"3.4440740024 Aliens (1986) 46\n",
"3.4436468174 Spanish Prisoner, The (1997) 46\n",
"3.442953982 Double Life of Veronique, The (La Double Vie de V\u00e9ronique) (1991) 50\n",
"3.44292255535 Remains of the Day, The (1993) 43\n",
"3.4426614515 Simon Birch (1998) 46\n",
"3.4423980281 Walkabout (1971) 40\n",
"3.44218937165 L.A. Story (1991) 43\n",
"3.4421272796 2001: A Space Odyssey (1968) 33\n",
"3.44212648616 Gandhi (1982) 44\n",
"3.44147167724 Taking of Pelham One Two Three, The (1974) 43\n",
"3.44064648626 Professional, The (a.k.a. Leon: The Professional) (1994) 46\n",
"3.43987514273 Celebration, The (Festen) (1998) 41\n",
"3.43976612553 My Left Foot (1989) 41\n",
"3.4396790557 Hamlet (1996) 48\n",
"3.43940268567 Dial M for Murder (1954) 45\n",
"3.43924294403 Waiting for Guffman (1996) 44\n",
"3.43896826605 Quiz Show (1994) 47\n",
"3.43890576133 Passion Fish (1992) 47\n",
"3.43884589177 Postino, Il (The Postman) (1994) 47\n",
"3.4388185368 Anchors Aweigh (1945) 49\n",
"3.43858952506 Ladyhawke (1985) 44\n",
"3.43782720351 Ref, The (1994) 30\n",
"3.43696353021 Alien (1979) 47\n",
"3.43665649602 Beetlejuice (1988) 31\n",
"3.4358308087 Victor/Victoria (1982) 45\n",
"3.43560730851 Grease (1978) 42\n",
"3.43487515339 Spartacus (1960) 43\n",
"3.43470568041 Requiem for a Dream (2000) 45\n",
"3.43345416002 Fast Times at Ridgemont High (1982) 33\n",
"3.43327293804 Clockwork Orange, A (1971) 38\n",
"3.43231965927 Elephant Man, The (1980) 45\n",
"3.43220991361 Truman Show, The (1998) 52\n",
"3.43136931104 Backbeat (1993) 31\n",
"3.43080625068 Cutting Edge, The (1992) 29\n",
"3.43037255019 Trainspotting (1996) 43\n",
"3.43036394428 Radio Days (1987) 39\n",
"3.43006419689 No Way Out (1987) 50\n",
"3.42959023926 Best in Show (2000) 41\n",
"3.42952771703 Insider, The (1999) 49\n",
"3.42912782563 Creature Comforts (1990) 46\n",
"3.42881059233 Annie Hall (1977) 40\n",
"3.42858456964 Mona Lisa (1986) 41\n",
"3.42833265307 Lone Star (1996) 45\n",
"3.42809419918 Crumb (1994) 33\n",
"3.42795045929 Taxi Driver (1976) 39\n",
"3.42771244722 City of Lost Children, The (1995) 39\n",
"3.42716874847 Matrix, The (1999) 46\n",
"3.42649713699 Being There (1979) 44\n",
"3.4261940808 Like Water for Chocolate (Como agua para chocolate) (1992) 45\n",
"3.42606595734 Destination Moon (1950) 36\n",
"3.42602272511 Game, The (1997) 45\n",
"3.4259479327 Good, The Bad and The Ugly, The (1966) 43\n",
"3.42553162888 Dead Poets Society (1989) 48\n",
"3.42474269072 Malcolm X (1992) 47\n",
"3.4242841688 Breaker Morant (1980) 40\n",
"3.42403990037 Strawberry and Chocolate (Fresa y chocolate) (1993) 50\n",
"3.42267867572 Ipcress File, The (1965) 55\n",
"3.4203449485 Boogie Nights (1997) 42\n",
"3.42017810742 When We Were Kings (1996) 39\n",
"3.419417115 Little Big Man (1970) 42\n",
"3.41897044843 Winslow Boy, The (1998) 52\n",
"3.41895975775 Dead Calm (1989) 41\n",
"3.41884367717 Miller's Crossing (1990) 41\n",
"3.41884002358 Midnight Cowboy (1969) 40\n",
"3.41834307943 Dead Man Walking (1995) 49\n",
"3.41712220793 War Room, The (1993) 50\n",
"3.4162674956 Enemy of the State (1998) 35\n",
"3.41512330509 Return of the Pink Panther, The (1974) 40\n",
"3.41470565285 Splash (1984) 29\n",
"3.41379405559 Killer, The (Die xue shuang xiong) (1989) 42\n",
"3.41340011979 Fantastic Voyage (1966) 40\n",
"3.41326893148 Twelfth Night (1996) 51\n",
"3.41311930701 Blue Velvet (1986) 29\n",
"3.41240617584 Sunshine (1999) 47\n",
"3.41013398089 Great Muppet Caper, The (1981) 51\n",
"3.40982225472 I Shot Andy Warhol (1996) 41\n",
"3.40974361196 Rock, The (1996) 29\n",
"3.40962518866 Unforgiven (1992) 46\n",
"3.40884211124 Deer Hunter, The (1978) 43\n",
"3.40825757196 What's Eating Gilbert Grape (1993) 44\n",
"3.40821236749 Room with a View, A (1986) 45\n",
"3.40794058021 Monty Python and the Holy Grail (1974) 46\n",
"3.407424098 Eve's Bayou (1997) 47\n",
"3.40535099539 Boys Don't Cry (1999) 46\n",
"3.4049429435 Wings of Desire (Der Himmel \u00fcber Berlin) (1987) 39\n",
"3.40480348314 Better Off Dead... (1985) 48\n",
"3.40397323595 Heavenly Creatures (1994) 42\n",
"3.40396813563 Spellbound (1945) 43\n",
"3.40391932443 Mrs. Dalloway (1997) 39\n",
"3.40331132081 Doctor Zhivago (1965) 41\n",
"3.40317331938 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922) 39\n",
"3.4025754378 Places in the Heart (1984) 52\n",
"3.40228403676 Yojimbo (1961) 43\n",
"3.40225003829 Trip to Bountiful, The (1985) 38\n",
"3.4017247941 Remember the Titans (2000) 50\n",
"3.40146118201 Five Easy Pieces (1970) 35\n",
"3.40132888634 Howards End (1992) 43\n",
"3.40121290256 Beautiful Thing (1996) 49\n",
"3.40075009512 Fabulous Baker Boys, The (1989) 29\n",
"3.40058962638 My Life as a Dog (Mitt liv som hund) (1985) 44\n",
"3.40016726926 River Runs Through It, A (1992) 44\n",
"3.39807494657 Nashville (1975) 40\n",
"3.39770591539 Jagged Edge (1985) 37\n",
"3.39763900794 Dances with Wolves (1990) 39\n",
"3.39755381419 Mystery Train (1989) 38\n",
"3.39750427956 Tom Jones (1963) 44\n",
"3.39636742237 Ridicule (1996) 42\n",
"3.39606887473 Hoop Dreams (1994) 44\n",
"3.39576759973 Broadcast News (1987) 41\n",
"3.39535317947 Down in the Delta (1998) 46\n",
"3.39490718884 Long Walk Home, The (1990) 55\n",
"3.39463628754 Dreamlife of Angels, The (La Vie r\u00eav\u00e9e des anges) (1998) 40\n",
"3.39282479378 Raising Arizona (1987) 41\n",
"3.39279763247 Diner (1982) 43\n",
"3.39266158501 Heathers (1989) 44\n",
"3.39242199159 Bastard Out of Carolina (1996) 52\n",
"3.39202021669 Charlotte's Web (1973) 52\n",
"3.39024038846 Never Cry Wolf (1983) 43\n",
"3.38973296288 Return to Me (2000) 44\n",
"3.38970858135 Koyaanisqatsi (1983) 39\n",
"3.38829419594 Animal House (1978) 38\n",
"3.38806033709 Secrets & Lies (1996) 43\n",
"3.38805446484 That Thing You Do! (1996) 38\n",
"3.38734090226 Night Shift (1982) 23\n",
"3.38718541959 Airplane! (1980) 43\n",
"3.38658474756 Searchers, The (1956) 47\n",
"3.3865603841 Thing, The (1982) 36\n",
"3.38572805863 Welcome to the Dollhouse (1995) 44\n",
"3.38561433427 Cookie's Fortune (1999) 46\n",
"3.38550520336 Dog Day Afternoon (1975) 45\n",
"3.38547615203 Vacation (1983) 26\n",
"3.38373002399 Ran (1985) 38\n",
"3.38308479376 Player, The (1992) 43\n",
"3.3827298089 Taming of the Shrew, The (1967) 47\n",
"3.38236741243 Brassed Off (1996) 34\n",
"3.38187574185 My Life in Pink (Ma vie en rose) (1997) 51\n",
"3.38181997016 Crimson Pirate, The (1952) 51\n",
"3.38137980166 Out of Sight (1998) 46\n",
"3.38072285079 Tin Drum, The (Blechtrommel, Die) (1979) 46\n",
"3.38059507179 For Your Eyes Only (1981) 37\n",
"3.38010872953 Ed Wood (1994) 43\n",
"3.37897176484 King of the Hill (1993) 46\n",
"3.3785141124 Lolita (1962) 41\n",
"3.37827109894 In the Company of Men (1997) 36\n",
"3.37779841733 Cinema Paradiso (1988) 47\n",
"3.37726201097 Serpico (1973) 42\n",
"3.37628541913 Burnt By the Sun (Utomlyonnye solntsem) (1994) 45\n",
"3.37596514797 Not One Less (Yi ge dou bu neng shao) (1999) 37\n",
"3.37595302373 Dolores Claiborne (1994) 34\n",
"3.37474249148 Freeway (1996) 39\n",
"3.37449162015 Meet John Doe (1941) 44\n",
"3.37414365409 Impostors, The (1998) 42\n",
"3.37333731465 Full Metal Jacket (1987) 45\n",
"3.37329146247 Rope (1948) 52\n",
"3.37309999997 X-Men (2000) 36\n",
"3.37227430023 Wolf Man, The (1941) 45\n",
"3.37178233546 Twelve Monkeys (1995) 46\n",
"3.37120557967 Paths of Glory (1957) 38\n",
"3.37084012147 Year of Living Dangerously (1982) 43\n",
"3.37022313751 Princess Mononoke, The (Mononoke Hime) (1997) 47\n",
"3.36947626934 Withnail and I (1987) 43\n",
"3.36940177713 Tender Mercies (1983) 40\n",
"3.3693720064 Looking for Richard (1996) 49\n",
"3.36861183036 Birdcage, The (1996) 50\n",
"3.36770132116 Manhattan (1979) 40\n",
"3.36710044106 Who's Afraid of Virginia Woolf? (1966) 42\n",
"3.36695672044 Being John Malkovich (1999) 46\n",
"3.36602233886 Bank Dick, The (1940) 37\n",
"3.36586421245 Madness of King George, The (1994) 46\n",
"3.36564964301 Shadowlands (1993) 51\n",
"3.36454319167 Interview with the Vampire (1994) 32\n",
"3.36419633935 Splendor in the Grass (1961) 49\n",
"3.36315742921 Halloween (1978) 37\n",
"3.36314326314 Weird Science (1985) 31\n",
"3.36278144169 Glengarry Glen Ross (1992) 40\n",
"3.36253992099 Grosse Pointe Blank (1997) 47\n",
"3.36208078962 Nixon (1995) 39\n",
"3.36146849767 Around the World in 80 Days (1956) 43\n",
"3.36135409285 Exorcist, The (1973) 37\n",
"3.3611062514 Flirting With Disaster (1996) 37\n",
"3.35970979637 Some Kind of Wonderful (1987) 45\n",
"3.35885196743 Meet Me in St. Louis (1944) 45\n",
"3.35848699096 Pink Floyd - The Wall (1982) 28\n",
"3.35829554893 Great Santini, The (1979) 46\n",
"3.35775959958 Wonderful, Horrible Life of Leni Riefenstahl, The (Die Macht der Bilder) (1993) 46\n",
"3.35656197193 Fresh (1994) 47\n",
"3.35607751945 Giant (1956) 54\n",
"3.35473698242 Wild Things (1998) 26\n",
"3.35460487808 Steel Magnolias (1989) 42\n",
"3.35433080337 Kelly's Heroes (1970) 45\n",
"3.35394767709 Blues Brothers, The (1980) 36\n",
"3.35391885523 Patriot, The (2000) 33\n",
"3.35342820847 Faster Pussycat! Kill! Kill! (1965) 29\n",
"3.35315471857 Ponette (1996) 48\n",
"3.35309979572 Muppet Movie, The (1979) 45\n",
"3.35307352618 Crying Game, The (1992) 40\n",
"3.35257916721 Drunken Master (Zui quan) (1979) 40\n",
"3.35071824406 Celluloid Closet, The (1995) 44\n",
"3.3498722978 Manhattan Murder Mystery (1993) 42\n",
"3.34969403359 Reservoir Dogs (1992) 44\n",
"3.34925048086 What Ever Happened to Baby Jane? (1962) 51\n",
"3.34763130559 Do the Right Thing (1989) 37\n",
"3.34603581955 Carnal Knowledge (1971) 34\n",
"3.34554413073 Going My Way (1944) 55\n",
"3.34432738653 Belle de jour (1967) 35\n",
"3.34394231219 Kagemusha (1980) 38\n",
"3.3434546017 Kolya (1996) 46\n",
"3.34241675421 Shining, The (1980) 42\n",
"3.34220845232 Courage Under Fire (1996) 43\n",
"3.34206741969 Three Kings (1999) 44\n",
"3.34154161787 Sex, Lies, and Videotape (1989) 33\n",
"3.34058763789 Muriel's Wedding (1994) 45\n",
"3.33765942186 Short Cuts (1993) 43\n",
"3.3375064051 Citizen Ruth (1996) 37\n",
"3.33406849151 Sweet Hereafter, The (1997) 41\n",
"3.33389825798 Piano, The (1993) 36\n",
"3.33329066048 Once Were Warriors (1994) 43\n",
"3.33296094554 Go (1999) 39\n",
"3.33191606509 Limey, The (1999) 37\n",
"3.33152821708 Buena Vista Social Club (1999) 41\n",
"3.33090529004 Pi (1998) 34\n",
"3.33053701083 Network (1976) 45\n",
"3.33053545754 Karate Kid, The (1984) 36\n",
"3.33000092324 Edward Scissorhands (1990) 41\n",
"3.32990997064 Man with the Golden Gun, The (1974) 29\n",
"3.32924023591 Secret of Roan Inish, The (1994) 45\n",
"3.32798983981 Truth About Cats & Dogs, The (1996) 35\n",
"3.32717576376 Smoke (1995) 39\n",
"3.32600029971 Clockers (1995) 33\n",
"3.32583287393 Phantom of the Opera, The (1943) 49\n",
"3.32480472135 20,000 Leagues Under the Sea (1954) 42\n",
"3.32444451777 Soldier's Story, A (1984) 44\n",
"3.32332967031 Four Days in September (1997) 51\n",
"3.32311064017 Trial, The (Le Proc\u00e8s) (1963) 47\n",
"3.32238294539 Hamlet (1948) 44\n",
"3.32232962884 Wrong Man, The (1956) 48\n",
"3.32139428496 Last Night (1998) 54\n",
"3.32049626629 Rescuers, The (1977) 50\n",
"3.32025446039 Pollyanna (1960) 44\n",
"3.31992707147 Invisible Man, The (1933) 44\n",
"3.31906652631 Chariots of Fire (1981) 44\n",
"3.31906425046 Nightmare Before Christmas, The (1993) 36\n",
"3.31788029157 Gigi (1958) 42\n",
"3.31742950476 Arthur (1981) 31\n",
"3.31625973716 American Werewolf in London, An (1981) 38\n",
"3.31607728485 Time Bandits (1981) 36\n",
"3.3155666271 Somewhere in Time (1980) 39\n",
"3.31525624199 Fight Club (1999) 44\n",
"3.31390535168 Fly Away Home (1996) 53\n",
"3.31324858181 Monty Python's Life of Brian (1979) 42\n",
"3.31227208691 My Dog Skip (1999) 50\n",
"3.31202642898 Fighting Seabees, The (1944) 27\n",
"3.31185070816 Ghost (1990) 36\n",
"3.3113370625 Antz (1998) 32\n",
"3.30905061086 Brighton Beach Memoirs (1986) 33\n",
"3.30831660731 Clear and Present Danger (1994) 29\n",
"3.30820416254 Saboteur (1942) 45\n",
"3.3074103062 Mis\u00e9rables, Les (1995) 41\n",
"3.30731268788 Donnie Brasco (1997) 43\n",
"3.30672282715 Delicatessen (1991) 48\n",
"3.30671096941 Hands on a Hard Body (1996) 42\n",
"3.30665128519 Scent of a Woman (1992) 36\n",
"3.3062601324 Soldier's Daughter Never Cries, A (1998) 48\n",
"3.3061734804 General, The (1998) 47\n",
"3.30517319401 Mariachi, El (1992) 40\n",
"3.3038256629 Frances (1982) 34\n",
"3.30338201526 Straight Story, The (1999) 42\n",
"3.30286991745 Chasing Amy (1997) 44\n",
"3.30138460097 Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964) 48\n",
"3.30117502369 And the Band Played On (1993) 53\n",
"3.30054020871 Blink (1994) 31\n",
"3.30039510371 Dancer in the Dark (2000) 38\n",
"3.29989536552 Big One, The (1997) 42\n",
"3.29917833422 Sugarland Express, The (1974) 37\n",
"3.29748341702 End of the Affair, The (1999) 42\n",
"3.2970397837 NeverEnding Story, The (1984) 44\n",
"3.29687367192 Men Don't Leave (1990) 44\n",
"3.29670082606 Picnic at Hanging Rock (1975) 53\n",
"3.29476496606 Mask of Zorro, The (1998) 34\n",
"3.29380950331 Night to Remember, A (1958) 53\n",
"3.29352554788 Before Sunrise (1995) 45\n",
"3.2934819883 Brazil (1985) 38\n",
"3.29325963774 Ghost in the Shell (Kokaku kidotai) (1995) 40\n",
"3.29322688792 Gattaca (1997) 40\n",
"3.29316262116 Paradise Lost: The Child Murders at Robin Hood Hills (1996) 37\n",
"3.29126683436 Clerks (1994) 41\n",
"3.29107733555 Crimes and Misdemeanors (1989) 44\n",
"3.29075389416 Everything You Always Wanted to Know About Sex (1972) 28\n",
"3.28747076876 Jules and Jim (Jules et Jim) (1961) 37\n",
"3.28739108753 Absent Minded Professor, The (1961) 45\n",
"3.28706605719 Office Space (1999) 35\n",
"3.28688108363 Time to Kill, A (1996) 39\n",
"3.28634875556 American Movie (1999) 33\n",
"3.28543022839 Journey of Natty Gann, The (1985) 35\n",
"3.28519842442 Mr. Mom (1983) 30\n",
"3.28470973385 Broken Hearts Club, The (2000) 44\n",
"3.28459883452 Paris, Texas (1984) 30\n",
"3.28350067689 Chicken Run (2000) 45\n",
"3.28156063759 Six Degrees of Separation (1993) 42\n",
"3.28118021117 Coming Home (1978) 39\n",
"3.27791640805 Once Upon a Time in the West (1969) 39\n",
"3.277467035 Fearless (1993) 27\n",
"3.27523377646 Young Poisoner's Handbook, The (1995) 41\n",
"3.27473163752 Trouble with Harry, The (1955) 49\n",
"3.27423747687 Gilda (1946) 37\n",
"3.27415086937 Ice Storm, The (1997) 39\n",
"3.27367980882 Little Shop of Horrors (1986) 26\n",
"3.27240148238 Saving Grace (2000) 39\n",
"3.27139084815 Roger & Me (1989) 45\n",
"3.27042439566 Simple Plan, A (1998) 47\n",
"3.26950187435 Drugstore Cowboy (1989) 41\n",
"3.26949489594 Mystery, Alaska (1999) 40\n",
"3.26904287317 Village of the Damned (1960) 31\n",
"3.2683633036 Easy Rider (1969) 37\n",
"3.26741855818 True Lies (1994) 30\n",
"3.26614402959 Dreamscape (1984) 37\n",
"3.26566673219 True Romance (1993) 40\n",
"3.26485871331 Sanjuro (1962) 50\n",
"3.26460464793 Cup, The (Ph\u00f6rpa) (1999) 40\n",
"3.26260776789 Ransom (1996) 40\n",
"3.2622689002 Picnic (1955) 49\n",
"3.260886447 Pillow Book, The (1995) 41\n",
"3.25806745068 Tarzan (1999) 39\n",
"3.25802061732 Mother (1996) 47\n",
"3.25729314719 All That Jazz (1979) 38\n",
"3.25689776501 Morning After, The (1986) 32\n",
"3.25680610405 Little Princess, The (1939) 40\n",
"3.25674847594 Family Thing, A (1996) 59\n",
"3.256602717 Purple Rose of Cairo, The (1985) 41\n",
"3.25633904971 Wilde (1997) 40\n",
"3.25481669425 Naked (1993) 32\n",
"3.25458550019 Rosewood (1997) 45\n",
"3.25451202468 Perfect World, A (1993) 37\n",
"3.25086528389 Abyss, The (1989) 44\n",
"3.25032493511 Maurice (1987) 43\n",
"3.25022215457 Three Colors: White (1994) 44\n",
"3.2494715115 English Patient, The (1996) 38\n",
"3.24930648525 Until the End of the World (Bis ans Ende der Welt) (1991) 40\n",
"3.24906629285 Days of Heaven (1978) 39\n",
"3.24800211361 Daytrippers, The (1996) 41\n",
"3.24792764603 They Shoot Horses, Don't They? (1969) 33\n",
"3.24755109626 My Bodyguard (1980) 30\n",
"3.24696335551 Waking the Dead (1999) 38\n",
"3.24690700094 Color of Money, The (1986) 24\n",
"3.24643244996 Mummy, The (1999) 28\n",
"3.24606455931 While You Were Sleeping (1995) 32\n",
"3.24507122115 Zero Effect (1998) 41\n",
"3.24323413143 Mighty, The (1998) 51\n",
"3.24270158512 Men With Guns (1997) 50\n",
"3.24213589686 Hang 'em High (1967) 37\n",
"3.24163874614 Thirty-Two Short Films About Glenn Gould (1993) 39\n",
"3.23824891589 My Best Friend's Wedding (1997) 44\n",
"3.23739091958 Excalibur (1981) 44\n",
"3.23722301127 Stepford Wives, The (1975) 24\n",
"3.23720314341 Crocodile Dundee (1986) 37\n",
"3.23685404192 Seven Days in May (1964) 46\n",
"3.23613079115 Fly, The (1958) 23\n",
"3.23491608156 Bullets Over Broadway (1994) 44\n",
"3.23486995206 Fanny and Alexander (1982) 36\n",
"3.23478349276 Nighthawks (1981) 37\n",
"3.23461578895 Jackie Brown (1997) 38\n",
"3.23450599946 Prince of the City (1981) 40\n",
"3.23345566146 True Grit (1969) 44\n",
"3.23327606565 Billy's Hollywood Screen Kiss (1997) 58\n",
"3.2330400953 Dorado, El (1967) 55\n",
"3.23159980781 Christmas Vacation (1989) 29\n",
"3.23128658703 Mighty Aphrodite (1995) 34\n",
"3.23097171256 Highlander (1986) 28\n",
"3.23064489478 Batman (1989) 32\n",
"3.22918921118 Swingers (1996) 39\n",
"3.22783700698 Devil in a Blue Dress (1995) 35\n",
"3.2273946993 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982) 45\n",
"3.22620236645 Tea with Mussolini (1999) 59\n",
"3.22440681336 Westworld (1973) 24\n",
"3.22411724125 Akira (1988) 41\n",
"3.2231732612 Abbott and Costello Meet Frankenstein (1948) 47\n",
"3.22252645339 Muppets Take Manhattan, The (1984) 41\n",
"3.21968982889 Die Hard 2 (1990) 31\n",
"3.21958886928 Dick (1999) 37\n",
"3.2191315233 Anastasia (1997) 50\n",
"3.21556537494 Oliver! (1968) 42\n",
"3.21421372235 East-West (Est-ouest) (1999) 41\n",
"3.21342154195 Davy Crockett, King of the Wild Frontier (1955) 56\n",
"3.21291158879 Watership Down (1978) 39\n",
"3.21266400151 Dinner Game, The (Le D\u00eener de cons) (1998) 39\n",
"3.21222195229 Army of Darkness (1993) 36\n",
"3.21161077955 Sabotage (1936) 42\n",
"3.21024376424 Top Gun (1986) 34\n",
"3.20925026227 Only You (1994) 33\n",
"3.20922188404 Indochine (1992) 34\n",
"3.20494660747 Walking and Talking (1996) 36\n",
"3.20400226343 7th Voyage of Sinbad, The (1958) 39\n",
"3.20347122393 Gods Must Be Crazy, The (1980) 39\n",
"3.20318672559 Midsummer Night's Dream, A (1999) 36\n",
"3.20246697823 Love Bug, The (1969) 29\n",
"3.20200038631 Unbearable Lightness of Being, The (1988) 37\n",
"3.20058145958 McCabe & Mrs. Miller (1971) 31\n",
"3.20057470497 Trick (1999) 52\n",
"3.19808697971 Firm, The (1993) 28\n",
"3.19771542042 Poseidon Adventure, The (1972) 28\n",
"3.19615081462 Blue Collar (1978) 40\n",
"3.19538386672 Bedknobs and Broomsticks (1971) 34\n",
"3.19510095286 Leaving Las Vegas (1995) 38\n",
"3.19444012944 Great Mouse Detective, The (1986) 42\n",
"3.19321425633 X-Files: Fight the Future, The (1998) 24\n",
"3.19269822623 Ruling Class, The (1972) 49\n",
"3.19232453338 American Tail, An (1986) 35\n",
"3.19178032131 Rushmore (1998) 39\n",
"3.19043005627 Mark of Zorro, The (1940) 51\n",
"3.19039272484 'Night Mother (1986) 48\n",
"3.18996867806 To Sir with Love (1967) 45\n",
"3.1891088776 Angel and the Badman (1947) 42\n",
"3.1888481174 To Die For (1995) 30\n",
"3.18763401771 Dark Crystal, The (1982) 39\n",
"3.18719269457 Sweet and Lowdown (1999) 39\n",
"3.18684700301 Long Kiss Goodnight, The (1996) 27\n",
"3.18577901136 Death and the Maiden (1994) 29\n",
"3.1857485542 Hairspray (1988) 33\n",
"3.18484275067 Mother Night (1996) 40\n",
"3.18421370089 Gulliver's Travels (1939) 26\n",
"3.1833235512 Unzipped (1995) 43\n",
"3.18306138149 Bronx Tale, A (1993) 40\n",
"3.18303388778 Age of Innocence, The (1993) 34\n",
"3.18123472618 World of Apu, The (Apur Sansar) (1959) 44\n",
"3.18028811076 Pork Chop Hill (1959) 56\n",
"3.17927180854 Chungking Express (1994) 36\n",
"3.17795489892 Grumpy Old Men (1993) 35\n",
"3.17790096335 Decline of Western Civilization, The (1981) 43\n",
"3.17769942296 Carnival of Souls (1962) 28\n",
"3.17762669433 Negotiator, The (1998) 25\n",
"3.17752293576 Real Genius (1985) 41\n",
"3.17642272772 Good Earth, The (1937) 57\n",
"3.174823436 Girl, Interrupted (1999) 35\n",
"3.17404378429 Get Carter (1971) 46\n",
"3.17369751176 March of the Wooden Soldiers (a.k.a. Laurel & Hardy in Toyland) (1934) 45\n",
"3.17273065764 Greatest Show on Earth, The (1952) 32\n",
"3.16966233907 Seven (Se7en) (1995) 48\n",
"3.16960496417 Return to Paradise (1998) 38\n",
"3.16930375376 Tombstone (1993) 35\n",
"3.16894304168 Battleship Potemkin, The (Bronenosets Potyomkin) (1925) 39\n",
"3.16877277475 Fandango (1985) 39\n",
"3.16783719982 Permanent Midnight (1998) 29\n",
"3.1658239968 Lost Horizon (1937) 48\n",
"3.1657657687 Everyone Says I Love You (1996) 46\n",
"3.16445843634 Night of the Living Dead (1968) 32\n",
"3.1644193242 Blast from the Past (1999) 34\n",
"3.16416072002 There's Something About Mary (1998) 36\n",
"3.16286199733 Angus (1995) 47\n",
"3.16239557183 Way We Were, The (1973) 41\n",
"3.1619275228 Last Temptation of Christ, The (1988) 30\n",
"3.16189928999 Extremities (1986) 33\n",
"3.16180781209 Fifth Element, The (1997) 29\n",
"3.16108681571 Batman: Mask of the Phantasm (1993) 41\n",
"3.16106210429 Lock, Stock & Two Smoking Barrels (1998) 39\n",
"3.16064017251 Antonia's Line (Antonia) (1995) 50\n",
"3.16033217919 Caddyshack (1980) 25\n",
"3.15976930817 Breaking the Waves (1996) 45\n",
"3.1582590636 Affliction (1997) 28\n",
"3.15686111794 Fox and the Hound, The (1981) 45\n",
"3.1566118928 Queen Margot (La Reine Margot) (1994) 42\n",
"3.15650379503 Mad Max 2 (a.k.a. The Road Warrior) (1981) 35\n",
"3.15583468402 Seven Beauties (Pasqualino Settebellezze) (1976) 52\n",
"3.15343764103 Maverick (1994) 33\n",
"3.15011830784 Red Sorghum (Hong Gao Liang) (1987) 46\n",
"3.14973851539 American Pop (1981) 35\n",
"3.14732365787 Dracula (1931) 43\n",
"3.14591046667 Tora! Tora! Tora! (1970) 40\n",
"3.14406590957 Carlito's Way (1993) 38\n",
"3.14394177094 Wag the Dog (1997) 38\n",
"3.14106996294 Stir of Echoes (1999) 37\n",
"3.14078733992 Cape Fear (1991) 30\n",
"3.13919521107 Singles (1992) 31\n",
"3.13914872078 Nurse Betty (2000) 41\n",
"3.13898168158 Horseman on the Roof, The (Hussard sur le toit, Le) (1995) 55\n",
"3.13897228372 Naked Gun: From the Files of Police Squad!, The (1988) 36\n",
"3.13747180754 Children of Heaven, The (Bacheha-Ye Aseman) (1997) 42\n",
"3.13695060705 Immortal Beloved (1994) 42\n",
"3.13669221145 Fallen (1998) 27\n",
"3.1355208838 Star Trek VI: The Undiscovered Country (1991) 24\n",
"3.13358033106 Bob Roberts (1992) 39\n",
"3.13310504209 For Whom the Bell Tolls (1943) 53\n",
"3.13173217987 Twelve Chairs, The (1970) 39\n",
"3.12873929537 Butcher Boy, The (1998) 35\n",
"3.12871024589 Better Than Chocolate (1999) 49\n",
"3.12840079391 Rounders (1998) 34\n",
"3.12774638059 Kentucky Fried Movie, The (1977) 28\n",
"3.12745904307 Friday (1995) 23\n",
"3.126743566 Casino (1995) 38\n",
"3.12641578523 Fisher King, The (1991) 36\n",
"3.12618205795 Them! (1954) 35\n",
"3.12443524796 Godfather: Part III, The (1990) 35\n",
"3.12360227378 Pope of Greenwich Village, The (1984) 43\n",
"3.1234788808 Meet the Parents (2000) 26\n",
"3.1233834166 Jeffrey (1995) 56\n",
"3.12265758439 Frenzy (1972) 49\n",
"3.12195089303 One True Thing (1998) 40\n",
"3.12178343085 Old Man and the Sea, The (1958) 51\n",
"3.12151662803 Pump Up the Volume (1990) 30\n",
"3.11892882741 Blue in the Face (1995) 43\n",
"3.11891222754 Duel in the Sun (1946) 57\n",
"3.11739877309 Wedding Singer, The (1998) 22\n",
"3.11634582848 Endless Summer, The (1966) 43\n",
"3.11585982673 Mystery Science Theater 3000: The Movie (1996) 34\n",
"3.11309957138 Hudsucker Proxy, The (1994) 34\n",
"3.11288920856 Rescuers Down Under, The (1990) 32\n",
"3.11180317702 Basic Instinct (1992) 20\n",
"3.11134977058 Virgin Suicides, The (1999) 46\n",
"3.11098047251 Marnie (1964) 46\n",
"3.11060969071 Tex (1982) 33\n",
"3.11046196957 Fantastic Planet, The (La Plan\u00e8te sauvage) (1973) 46\n",
"3.11042564489 Cat Ballou (1965) 49\n",
"3.10952211551 Deconstructing Harry (1997) 24\n",
"3.10941652242 Big Lebowski, The (1998) 34\n",
"3.1092456477 Space Cowboys (2000) 40\n",
"3.10802224824 Star Is Born, A (1937) 49\n",
"3.10784415036 Benny & Joon (1993) 27\n",
"3.10708054281 Exotica (1994) 29\n",
"3.1065905519 Tumbleweeds (1999) 47\n",
"3.10630713248 American Flyers (1985) 43\n",
"3.10497518982 Losing Isaiah (1995) 42\n",
"3.10420397309 Mr. Holland's Opus (1995) 45\n",
"3.10322116908 Suddenly, Last Summer (1959) 46\n",
"3.10319951251 Reds (1981) 31\n",
"3.10182350051 Pee-wee's Big Adventure (1985) 28\n",
"3.10098280981 Children of the Revolution (1996) 43\n",
"3.10081967954 Dancer, Texas Pop. 81 (1998) 38\n",
"3.10048854307 Rapture, The (1991) 42\n",
"3.10015342789 Air Force One (1997) 31\n",
"3.09999687949 Stalker (1979) 36\n",
"3.09961485301 Apostle, The (1997) 38\n",
"3.09541752188 Star Trek III: The Search for Spock (1984) 34\n",
"3.09540943167 Me Myself I (2000) 35\n",
"3.09471174932 Kundun (1997) 45\n",
"3.09402136155 Of Human Bondage (1934) 44\n",
"3.0937294239 Maya Lin: A Strong Clear Vision (1994) 39\n",
"3.09160365219 Little Voice (1998) 45\n",
"3.089333986 Flamingo Kid, The (1984) 30\n",
"3.08793325468 My Life (1993) 39\n",
"3.08214205423 Angel Baby (1995) 47\n",
"3.07971877742 Bad Seed, The (1956) 40\n",
"3.07924491397 Fright Night (1985) 34\n",
"3.07905384223 Homeward Bound: The Incredible Journey (1993) 48\n",
"3.07700603739 Rainmaker, The (1997) 38\n",
"3.07276255194 Breakdown (1997) 28\n",
"3.07186850549 Mask, The (1994) 26\n",
"3.07039411829 Adventures in Babysitting (1987) 36\n",
"3.06971055517 Microcosmos (Microcosmos: Le peuple de l'herbe) (1996) 50\n",
"3.06856831625 Basquiat (1996) 44\n",
"3.06773406091 Romper Stomper (1992) 38\n",
"3.06548630442 Pajama Game, The (1957) 55\n",
"3.06298507732 Ulee's Gold (1997) 42\n",
"3.06234941789 Eyes of Tammy Faye, The (2000) 46\n",
"3.06204833509 Pretty in Pink (1986) 29\n",
"3.06202694343 Steamboat Willie (1940) 48\n",
"3.06098081885 Postman Always Rings Twice, The (1981) 30\n",
"3.06090851358 Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970) 45\n",
"3.0608686978 Stranger Than Paradise (1984) 25\n",
"3.06074885061 Mo' Better Blues (1990) 42\n",
"3.05985281349 Soul Food (1997) 37\n",
"3.05699075975 Butterfly (La Lengua de las Mariposas) (2000) 47\n",
"3.05659182641 Re-Animator (1985) 23\n",
"3.05651074912 Lethal Weapon 2 (1989) 25\n",
"3.05474202021 Mediterraneo (1991) 42\n",
"3.05459249131 Brother from Another Planet, The (1984) 39\n",
"3.05269563715 Farewell to Arms, A (1932) 54\n",
"3.05259988668 Frighteners, The (1996) 28\n",
"3.05241413285 For a Few Dollars More (1965) 40\n",
"3.0522487747 Cool Runnings (1993) 47\n",
"3.05161312206 Othello (1995) 39\n",
"3.05073817137 Back to the Future Part II (1989) 27\n",
"3.04913384792 Mission, The (1986) 43\n",
"3.0487634317 Total Recall (1990) 22\n",
"3.04803866915 Odessa File, The (1974) 31\n",
"3.04712392673 Clay Pigeons (1998) 33\n",
"3.04539756756 Metropolitan (1990) 35\n",
"3.04460259423 Magnum Force (1973) 39\n",
"3.04410785303 Blair Witch Project, The (1999) 22\n",
"3.04357843275 Coogan's Bluff (1968) 42\n",
"3.04334361854 Evil Dead II (Dead By Dawn) (1987) 31\n",
"3.04326448484 South Park: Bigger, Longer and Uncut (1999) 30\n",
"3.04326071138 Menace II Society (1993) 42\n",
"3.04223386008 Liberty Heights (1999) 46\n",
"3.04026812843 Wild Reeds (1994) 40\n",
"3.04025303474 10 Things I Hate About You (1999) 24\n",
"3.03846486649 Fantasia 2000 (1999) 40\n",
"3.03587599491 Shaggy Dog, The (1959) 37\n",
"3.03519919756 Whatever (1998) 40\n",
"3.03489787672 Thing From Another World, The (1951) 43\n",
"3.03485334594 Long Goodbye, The (1973) 38\n",
"3.03430589524 Near Dark (1987) 44\n",
"3.0338415998 Boys Life (1995) 37\n",
"3.03197850983 Rudy (1993) 41\n",
"3.0315425851 Joe Gould's Secret (2000) 37\n",
"3.0299708409 Superman II (1980) 29\n",
"3.02841180596 Cube (1997) 41\n",
"3.02735204599 Mrs. Doubtfire (1993) 40\n",
"3.02708848481 Object of My Affection, The (1998) 43\n",
"3.02687232264 Edge, The (1997) 37\n",
"3.0268372045 Don Juan DeMarco (1995) 30\n",
"3.02641491597 Legends of the Fall (1994) 24\n",
"3.02565115435 Yards, The (1999) 38\n",
"3.02522350086 Inspector General, The (1949) 57\n",
"3.02520854554 Sid and Nancy (1986) 33\n",
"3.0249732365 Dead Ringers (1988) 32\n",
"3.02436165287 My Crazy Life (Mi vida loca) (1993) 43\n",
"3.02283442797 Interiors (1978) 39\n",
"3.02219488129 White Squall (1996) 41\n",
"3.02046886056 Bottle Rocket (1996) 40\n",
"3.01918657444 Little Princess, A (1995) 36\n",
"3.01910542352 FairyTale: A True Story (1997) 44\n",
"3.01844621618 Sinbad and the Eye of the Tiger (1977) 32\n",
"3.01801970522 Analyze This (1999) 28\n",
"3.01757908033 Shampoo (1975) 26\n",
"3.01744690458 Boiler Room (2000) 23\n",
"3.01662466715 Runaway Train (1985) 33\n",
"3.01482756452 Effect of Gamma Rays on Man-in-the-Moon Marigolds, The (1972) 52\n",
"3.01455260048 Talented Mr. Ripley, The (1999) 28\n",
"3.01347815836 Alive (1993) 36\n",
"3.01341447176 French Twist (Gazon maudit) (1995) 43\n",
"3.01302882771 Fitzcarraldo (1982) 42\n",
"3.01287414397 Labyrinth (1986) 34\n",
"3.01261959006 Cop Land (1997) 25\n",
"3.01176921259 Happiness (1998) 40\n",
"3.01036602579 That Darn Cat! (1965) 33\n",
"3.00899540617 Sister Act (1992) 43\n",
"3.00879306657 One Crazy Summer (1986) 30\n",
"3.00693143415 Crimes of the Heart (1986) 42\n",
"3.0063453292 Aristocats, The (1970) 30\n",
"3.00601375429 Cry in the Dark, A (1988) 45\n",
"3.00601288455 Muppets From Space (1999) 39\n",
"3.00487933363 U2: Rattle and Hum (1988) 37\n",
"3.00357924014 Lord of the Flies (1963) 31\n",
"3.00322662814 Paper, The (1994) 40\n",
"3.00250326704 East is East (1999) 43\n",
"3.00221170903 Flying Tigers (1942) 43\n",
"3.00097917481 Logan's Run (1976) 25\n",
"2.99818133221 Paris Is Burning (1990) 49\n",
"2.99731837332 52 Pick-Up (1986) 31\n",
"2.99725941916 Mummy, The (1932) 43\n",
"2.99698194222 Jane Eyre (1996) 45\n",
"2.99269046911 Phenomenon (1996) 32\n",
"2.99117060029 Bowfinger (1999) 23\n",
"2.99085155421 Coma (1978) 31\n",
"2.98952339307 Priest (1994) 33\n",
"2.9872092936 Your Friends and Neighbors (1998) 34\n",
"2.98590754292 Kids (1995) 32\n",
"2.98561195377 Goonies, The (1985) 24\n",
"2.98443527729 Running Scared (1986) 38\n",
"2.98418901949 Star Trek: Generations (1994) 40\n",
"2.98403364555 American Pimp (1999) 35\n",
"2.98201372324 Independence Day (ID4) (1996) 35\n",
"2.97635714229 Freaky Friday (1977) 38\n",
"2.9759028923 Big Kahuna, The (2000) 39\n",
"2.97266457713 Mumford (1999) 32\n",
"2.97247498693 Heaven & Earth (1993) 40\n",
"2.97118084535 Basketball Diaries, The (1995) 39\n",
"2.97094628758 Home for the Holidays (1995) 38\n",
"2.97059080945 Clara's Heart (1988) 49\n",
"2.96903403222 Fear of a Black Hat (1993) 42\n",
"2.96852818586 Balto (1995) 50\n",
"2.96792986278 Girlfight (2000) 44\n",
"2.96445318938 Client, The (1994) 42\n",
"2.96375857953 Parent Trap, The (1998) 54\n",
"2.96147929188 Good Morning, Vietnam (1987) 45\n",
"2.96140172945 House of Yes, The (1997) 35\n",
"2.96134252418 Back to the Future Part III (1990) 36\n",
"2.96124051866 Flight of the Navigator (1986) 40\n",
"2.9587389902 Indiana Jones and the Temple of Doom (1984) 31\n",
"2.95806269424 Primary Colors (1998) 41\n",
"2.95802830891 Dirty Dancing (1987) 38\n",
"2.95695843947 Wes Craven's New Nightmare (1994) 26\n",
"2.95499878449 Hellraiser (1987) 23\n",
"2.95352454989 Tie Me Up! Tie Me Down! (1990) 34\n",
"2.9529203485 Bamba, La (1987) 35\n",
"2.95263999149 Hercules (1997) 27\n",
"2.9523912319 American Psycho (2000) 22\n",
"2.9511307227 In & Out (1997) 38\n",
"2.95079096918 Star Trek: Insurrection (1998) 44\n",
"2.94759330659 Incredibly True Adventure of Two Girls in Love, The (1995) 41\n",
"2.94748849616 Love and Death on Long Island (1997) 38\n",
"2.94521383036 Body Parts (1991) 38\n",
"2.94388406381 Suicide Kings (1997) 23\n",
"2.94351956463 Hurlyburly (1998) 36\n",
"2.94288487681 Nutty Professor, The (1963) 44\n",
"2.94260611916 Golden Voyage of Sinbad, The (1974) 31\n",
"2.94124093677 William Shakespeare's Romeo and Juliet (1996) 25\n",
"2.94058580222 Mad Max (1979) 30\n",
"2.94035434482 Moll Flanders (1996) 46\n",
"2.93761949631 She's Gotta Have It (1986) 34\n",
"2.93543368552 Austin Powers: International Man of Mystery (1997) 25\n",
"2.93415543568 Clue (1985) 34\n",
"2.93294138408 Face/Off (1997) 26\n",
"2.93137306581 Oscar and Lucinda (a.k.a. Oscar & Lucinda) (1997) 36\n",
"2.92930237278 Smoke Signals (1998) 37\n",
"2.92879101591 Captain Horatio Hornblower (1951) 50\n",
"2.92855012374 Corrina, Corrina (1994) 48\n",
"2.92820661071 After Life (1998) 46\n",
"2.92634669958 Godzilla (Gojira) (1984) 36\n",
"2.92475360758 Omega Man, The (1971) 32\n",
"2.92431979068 Godzilla (Gojira) (1954) 30\n",
"2.92397048644 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995) 42\n",
"2.9226424194 Cemetery Man (Dellamorte Dellamore) (1994) 42\n",
"2.92196048002 Creepshow (1982) 34\n",
"2.92098997437 Far and Away (1992) 38\n",
"2.92016297778 Night Falls on Manhattan (1997) 38\n",
"2.91527939471 Cell, The (2000) 25\n",
"2.91403922054 God Said 'Ha!' (1998) 38\n",
"2.91290856471 True Crime (1995) 33\n",
"2.9123502789 Map of the World, A (1999) 44\n",
"2.91092302604 Woman in the Dunes (Suna no onna) (1964) 34\n",
"2.90927781979 Ghosts of Mississippi (1996) 47\n",
"2.90742449955 Madame Sousatzka (1988) 53\n",
"2.90716525402 Wayne's World (1992) 23\n",
"2.90630778765 World Is Not Enough, The (1999) 30\n",
"2.90388842842 It Came from Outer Space (1953) 40\n",
"2.90311291356 Fear (1996) 40\n",
"2.90200651389 Santa Clause, The (1994) 40\n",
"2.90138321323 Masque of the Red Death, The (1964) 49\n",
"2.90095439291 Trees Lounge (1996) 32\n",
"2.90035114326 Sabrina (1995) 50\n",
"2.90018631219 Thin Red Line, The (1998) 25\n",
"2.89827682459 Mortal Thoughts (1991) 45\n",
"2.89721492357 True Crime (1999) 45\n",
"2.89655531004 Marvin's Room (1996) 43\n",
"2.89604946351 My Fellow Americans (1996) 45\n",
"2.89604466136 Stealing Home (1988) 45\n",
"2.89567162479 Wild America (1997) 54\n",
"2.8941447263 Buffalo 66 (1998) 25\n",
"2.89219347285 When a Man Loves a Woman (1994) 37\n",
"2.89211350078 Titanic (1953) 51\n",
"2.89090018773 House of Frankenstein (1944) 52\n",
"2.89050285658 Private Benjamin (1980) 32\n",
"2.89041751051 Footloose (1984) 41\n",
"2.88974935248 Girl on the Bridge, The (La Fille sur le Pont) (1999) 45\n",
"2.88909773029 Romeo Is Bleeding (1993) 38\n",
"2.88907573862 Dinosaur (2000) 40\n",
"2.8889313425 Seventh Sign, The (1988) 39\n",
"2.88844888854 Kiss Me, Guido (1997) 39\n",
"2.88733368358 Walk on the Moon, A (1999) 34\n",
"2.88671591346 Executive Decision (1996) 39\n",
"2.88617279867 Bridges of Madison County, The (1995) 33\n",
"2.88568128205 Bride of the Monster (1956) 30\n",
"2.88514201614 Agnes of God (1985) 43\n",
"2.88442522841 View to a Kill, A (1985) 34\n",
"2.88396801794 Horse Whisperer, The (1998) 36\n",
"2.87962651182 Music of the Heart (1999) 47\n",
"2.8791597469 Dazed and Confused (1993) 32\n",
"2.87791837235 My Own Private Idaho (1991) 28\n",
"2.87723605283 Forever Young (1992) 43\n",
"2.87434085803 Spitfire Grill, The (1996) 36\n",
"2.87195636265 You've Got Mail (1998) 41\n",
"2.87170747177 Young Guns (1988) 35\n",
"2.87110344775 Beautiful People (1999) 37\n",
"2.8704705521 Tingler, The (1959) 42\n",
"2.8688431959 Hamlet (2000) 32\n",
"2.86861053285 Nineteen Eighty-Four (1984) 44\n",
"2.86846312725 Sleepy Hollow (1999) 25\n",
"2.86730130299 Incredible Journey, The (1963) 46\n",
"2.86687885876 Harriet the Spy (1996) 36\n",
"2.8668740296 Darby O'Gill and the Little People (1959) 43\n",
"2.86661360257 Red Corner (1997) 39\n",
"2.8663572422 Flesh and Bone (1993) 34\n",
"2.86607875349 With Honors (1994) 51\n",
"2.86518116645 It Could Happen to You (1994) 41\n",
"2.86481918679 Go Fish (1994) 37\n",
"2.86445189226 Life and Times of Hank Greenberg, The (1998) 51\n",
"2.86293592379 Dead Men Don't Wear Plaid (1982) 28\n",
"2.86254114335 Bamboozled (2000) 32\n",
"2.86192373738 Prophecy, The (1995) 35\n",
"2.86118638976 Desperado (1995) 28\n",
"2.86067705365 Bring It On (2000) 37\n",
"2.85880709743 Betrayed (1988) 41\n",
"2.85667145206 Omen, The (1976) 26\n",
"2.85541935295 Die Hard: With a Vengeance (1995) 23\n",
"2.85359570819 Stardust Memories (1980) 30\n",
"2.85331357551 Flawless (1999) 41\n",
"2.85303602439 Benji (1974) 42\n",
"2.85225741458 Cronos (1992) 34\n",
"2.85224335441 Mr. Nice Guy (1997) 43\n",
"2.85083343841 Bride of Re-Animator (1990) 32\n",
"2.85044060714 SubUrbia (1997) 39\n",
"2.84975715283 Cecil B. Demented (2000) 36\n",
"2.84943397703 Shanghai Noon (2000) 32\n",
"2.84851036572 Braindead (1992) 39\n",
"2.8474403227 Eraserhead (1977) 31\n",
"2.84695437948 Stealing Beauty (1996) 48\n",
"2.84627305472 Operation Condor 2 (Longxiong hudi) (1990) 29\n",
"2.84549451004 Eyes Wide Shut (1999) 26\n",
"2.84546952827 Howling, The (1980) 26\n",
"2.84539137917 Doors, The (1991) 24\n",
"2.84530363188 Way of the Gun, The (2000) 26\n",
"2.84483403352 American Tail: Fievel Goes West, An (1991) 41\n",
"2.84445870222 Madonna: Truth or Dare (1991) 42\n",
"2.84147863496 Prince of Egypt, The (1998) 39\n",
"2.84127231202 Bringing Out the Dead (1999) 29\n",
"2.84103302921 Center Stage (2000) 39\n",
"2.83625851162 Flashdance (1983) 44\n",
"2.83472159802 Six-String Samurai (1998) 39\n",
"2.83386731333 Navigator: A Mediaeval Odyssey, The (1988) 40\n",
"2.83344301896 Welcome To Sarajevo (1997) 38\n",
"2.83230442989 Rush Hour (1998) 30\n",
"2.83137489043 Addiction, The (1995) 32\n",
"2.83137437782 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995) 37\n",
"2.83106606508 Night of the Comet (1984) 31\n",
"2.8308612275 Curse of Frankenstein, The (1957) 33\n",
"2.82982593786 Quest for Camelot (1998) 44\n",
"2.82863339046 Heartbreak Ridge (1986) 27\n",
"2.82400436237 Strange Days (1995) 33\n",
"2.82364310206 Emerald Forest, The (1985) 30\n",
"2.82355110114 City of Angels (1998) 45\n",
"2.82306340936 Things Change (1988) 49\n",
"2.82301189323 Set It Off (1996) 46\n",
"2.82285845771 Fletch (1985) 22\n",
"2.8227435313 Shower (Xizhao) (1999) 47\n",
"2.82217037672 Max Dugan Returns (1983) 39\n",
"2.82215744267 Flatliners (1990) 38\n",
"2.82200950946 Mighty Joe Young (1949) 38\n",
"2.82200325552 Sleepers (1996) 36\n",
"2.82051007474 April Fool's Day (1986) 32\n",
"2.81785349679 Death Wish (1974) 36\n",
"2.81780200515 Cat People (1982) 32\n",
"2.81663196362 Midnight in the Garden of Good and Evil (1997) 38\n",
"2.81662709291 Down by Law (1986) 32\n",
"2.8164518436 Slums of Beverly Hills, The (1998) 32\n",
"2.81642230675 Mrs. Winterbourne (1996) 47\n",
"2.81491062784 Quatermass and the Pit (1967) 37\n",
"2.81381843822 Star Wars: Episode I - The Phantom Menace (1999) 30\n",
"2.81360886215 Phantasm (1979) 27\n",
"2.81330173925 Jumpin' Jack Flash (1986) 43\n",
"2.81313579131 Anna and the King (1999) 38\n",
"2.81252607089 Brady Bunch Movie, The (1995) 31\n",
"2.81241927927 Lord of the Rings, The (1978) 37\n",
"2.81212762568 Scream 2 (1997) 45\n",
"2.80921594232 Attack of the Killer Tomatoes! (1980) 34\n",
"2.80902503936 Falcon and the Snowman, The (1984) 36\n",
"2.80844238732 Titan A.E. (2000) 33\n",
"2.80810774769 Get on the Bus (1996) 49\n",
"2.80803937375 Higher Learning (1995) 42\n",
"2.80671112299 Mephisto (1981) 44\n",
"2.80668713177 GoldenEye (1995) 28\n",
"2.80536218248 Bad Lieutenant (1992) 30\n",
"2.80489639712 Blue Sky (1994) 35\n",
"2.80448086991 Time Code (2000) 35\n",
"2.80369927999 Man with the Golden Arm, The (1955) 43\n",
"2.80343123601 Girl 6 (1996) 51\n",
"2.8022481555 Clockwatchers (1997) 30\n",
"2.80132102664 Far Off Place, A (1993) 46\n",
"2.8008693846 Jerk, The (1979) 27\n",
"2.80065900704 Pete's Dragon (1977) 39\n",
"2.80006175808 Blown Away (1994) 37\n",
"2.79981307238 History of the World: Part I (1981) 26\n",
"2.79962016272 Bulletproof (1996) 31\n",
"2.79936069939 Simple Twist of Fate, A (1994) 44\n",
"2.79890313611 My Blue Heaven (1990) 29\n",
"2.79831904521 Reality Bites (1994) 40\n",
"2.7975254632 River Wild, The (1994) 43\n",
"2.79681116685 Big Blue, The (Le Grand Bleu) (1988) 34\n",
"2.79673728627 White Sands (1992) 41\n",
"2.7957157268 Craft, The (1996) 34\n",
"2.79513530654 Man and a Woman, A (Un Homme et une Femme) (1966) 42\n",
"2.79487863257 Razor's Edge, The (1984) 39\n",
"2.79431863388 Scarlet Letter, The (1995) 43\n",
"2.79371490118 Three Caballeros, The (1945) 32\n",
"2.79346469739 Selena (1997) 49\n",
"2.79087752193 Madeline (1998) 34\n",
"2.7902643859 Presidio, The (1988) 45\n",
"2.79009973288 Bulworth (1998) 31\n",
"2.78925588281 Mission: Impossible (1996) 30\n",
"2.78811783424 Next Friday (1999) 37\n",
"2.78726104046 Shaggy D.A., The (1976) 40\n",
"2.78715876113 Young Sherlock Holmes (1985) 31\n",
"2.78700990976 Velvet Goldmine (1998) 33\n",
"2.78658849315 Civil Action, A (1998) 27\n",
"2.78656555908 Beloved (1998) 31\n",
"2.78555486757 Man on the Moon (1999) 26\n",
"2.78511566582 American Buffalo (1996) 39\n",
"2.78429332762 Tomorrow Never Dies (1997) 21\n",
"2.7842845956 Soapdish (1991) 31\n",
"2.78218430304 Jacob's Ladder (1990) 30\n",
"2.78135258007 Ride with the Devil (1999) 33\n",
"2.78072986337 Solaris (Solyaris) (1972) 39\n",
"2.77908531944"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" Blue Chips (1994) 39\n",
"2.77868969215 Alphaville (1965) 31\n",
"2.77866716508 Threesome (1994) 47\n",
"2.77846845667 Now and Then (1995) 44\n",
"2.77791594302 Xiu Xiu: The Sent-Down Girl (Tian yu) (1998) 37\n",
"2.77783561825 War, The (1994) 36\n",
"2.7777566572 Rob Roy (1995) 37\n",
"2.77707631142 Tigger Movie, The (2000) 44\n",
"2.7769519816 Niagara (1953) 41\n",
"2.77472250066 Urban Legend (1998) 37\n",
"2.77444409424 Omega Code, The (1999) 46\n",
"2.77356412166 Torn Curtain (1966) 43\n",
"2.77200848799 Jeremiah Johnson (1972) 42\n",
"2.77152891325 Babes in Toyland (1961) 34\n",
"2.77150275325 Boys on the Side (1995) 43\n",
"2.77150188988 Family Plot (1976) 37\n",
"2.77094397814 Idle Hands (1999) 41\n",
"2.77049855422 Angels and Insects (1995) 34\n",
"2.77038508162 High Art (1998) 32\n",
"2.76936164393 Coyote Ugly (2000) 40\n",
"2.76762553676 Gremlins (1984) 21\n",
"2.76659723974 Indian Summer (a.k.a. Alive & Kicking) (1996) 43\n",
"2.76613394906 Body Snatchers (1993) 25\n",
"2.76600729398 Switchback (1997) 35\n",
"2.76545848048 Orgazmo (1997) 27\n",
"2.76480834365 Foxfire (1996) 39\n",
"2.76400557004 American Gigolo (1980) 36\n",
"2.76283145045 Before and After (1996) 39\n",
"2.76218351872 Casper (1995) 47\n",
"2.76178438848 War Zone, The (1999) 41\n",
"2.76018904333 Apple Dumpling Gang, The (1975) 42\n",
"2.75999082411 Alien Nation (1988) 24\n",
"2.75997319094 Poison Ivy (1992) 41\n",
"2.75997158625 Cradle Will Rock, The (1999) 34\n",
"2.75916624689 Nine 1/2 Weeks (1986) 44\n",
"2.7587358981 Assault on Precinct 13 (1976) 45\n",
"2.75862376062 Homegrown (1998) 36\n",
"2.75805630862 Van, The (1996) 47\n",
"2.75686531142 Jungle Fever (1991) 33\n",
"2.75576642344 Absolute Power (1997) 43\n",
"2.7541617732 Man with Two Brains, The (1983) 31\n",
"2.75387727318 Kalifornia (1993) 24\n",
"2.75339451286 Gothic (1986) 42\n",
"2.75338108639 Doctor Dolittle (1967) 46\n",
"2.75119380776 Believers, The (1987) 34\n",
"2.75043768223 Mis\u00e9rables, Les (1998) 40\n",
"2.75007827149 Bad Girls (1994) 40\n",
"2.74967827967 Con Air (1997) 40\n",
"2.74946496265 Air Bud (1997) 38\n",
"2.74942464965 Henry Fool (1997) 31\n",
"2.74905104771 Up Close and Personal (1996) 43\n",
"2.74882849984 Desperately Seeking Susan (1985) 40\n",
"2.7478428325 Disturbing Behavior (1998) 39\n",
"2.74687196313 Whole Nine Yards, The (2000) 41\n",
"2.74449609613 Species (1995) 41\n",
"2.74375112998 Last Days of Disco, The (1998) 28\n",
"2.7432109238 Communion (1989) 43\n",
"2.74260438639 Urban Legends: Final Cut (2000) 34\n",
"2.74194158068 Ace Ventura: Pet Detective (1994) 30\n",
"2.73976298951 School Daze (1988) 52\n",
"2.73966675161 Moonraker (1979) 32\n",
"2.73894489602 Governess, The (1998) 37\n",
"2.73874842666 Mission: Impossible 2 (2000) 32\n",
"2.73849315487 Blackbeard's Ghost (1968) 48\n",
"2.73755797962 Little Shop of Horrors, The (1960) 33\n",
"2.73651579598 Soylent Green (1973) 28\n",
"2.73641971945 Quest for Fire (1981) 27\n",
"2.73619136053 Pink Flamingos (1972) 32\n",
"2.7358533759 Bone Collector, The (1999) 39\n",
"2.73397041754 Big Trouble in Little China (1986) 20\n",
"2.73368003074 Tigerland (2000) 52\n",
"2.73226570738 Mommie Dearest (1981) 33\n",
"2.73086156002 Unstrung Heroes (1995) 29\n",
"2.73036412504 Boondock Saints, The (1999) 30\n",
"2.73005207964 Bear, The (1988) 35\n",
"2.73001372781 Licence to Kill (1989) 35\n",
"2.72997164635 Wonderland (1999) 43\n",
"2.72901749646 Spanking the Monkey (1994) 32\n",
"2.72728163173 Cook the Thief His Wife & Her Lover, The (1989) 32\n",
"2.72694541374 Gingerbread Man, The (1998) 38\n",
"2.72682578523 Party Girl (1995) 37\n",
"2.72681874568 Bye Bye, Love (1995) 44\n",
"2.72680392002 Angel Heart (1987) 22\n",
"2.72611025187 Patch Adams (1998) 49\n",
"2.72600356281 On the Beach (1959) 42\n",
"2.7241034089 Raven, The (1963) 39\n",
"2.72383858518 Henry: Portrait of a Serial Killer (1990) 24\n",
"2.72272058923 Houseguest (1994) 37\n",
"2.72250413225 Brain That Wouldn't Die, The (1962) 30\n",
"2.72246677621 Love and Basketball (2000) 43\n",
"2.72127890757 Devil's Advocate, The (1997) 20\n",
"2.72082373567 Surviving the Game (1994) 42\n",
"2.7202197599 Phantasm II (1988) 30\n",
"2.71986879893 Lost Highway (1997) 24\n",
"2.71967823952 Live and Let Die (1973) 29\n",
"2.71958208261 We're No Angels (1989) 43\n",
"2.71939969981 French Kiss (1995) 41\n",
"2.71930695959 Private Parts (1997) 21\n",
"2.71926557968 Hand That Rocks the Cradle, The (1992) 40\n",
"2.71881557085 Wyatt Earp (1994) 41\n",
"2.71825144302 Ronin (1998) 22\n",
"2.71821490258 BASEketball (1998) 34\n",
"2.717240285 U Turn (1997) 25\n",
"2.71577251137 Replacements, The (2000) 38\n",
"2.71477294869 Dangerous Minds (1995) 44\n",
"2.71465293956 Son of Frankenstein (1939) 40\n",
"2.71447764139 Grace of My Heart (1996) 38\n",
"2.71167500049 Deep Rising (1998) 39\n",
"2.71147165749 Chuck & Buck (2000) 33\n",
"2.71118983647 Rumble in the Bronx (1995) 31\n",
"2.71106103651 Creature From the Black Lagoon, The (1954) 37\n",
"2.71056463643 Love! Valour! Compassion! (1997) 40\n",
"2.70987750217 Princess Caraboo (1994) 32\n",
"2.70941237566 Home Alone (1990) 37\n",
"2.70741953265 Smilla's Sense of Snow (1997) 37\n",
"2.7063085589 Evening Star, The (1996) 39\n",
"2.70504424148 Porky's (1981) 41\n",
"2.70478585513 Adventures of Milo and Otis, The (1986) 32\n",
"2.70276168753 Killing Zoe (1994) 42\n",
"2.70230706581 Herbie Goes to Monte Carlo (1977) 38\n",
"2.70167764247 Radioland Murders (1994) 49\n",
"2.7009064598 54 (1998) 44\n",
"2.70014490662 Little Odessa (1994) 36\n",
"2.69921837334 Barry Lyndon (1975) 37\n",
"2.69836079746 King Kong vs. Godzilla (Kingukongu tai Gojira) (1962) 46\n",
"2.69781074227 Wild Man Blues (1998) 44\n",
"2.69759177127 Burnt Offerings (1976) 36\n",
"2.69656035017 187 (1997) 39\n",
"2.69640841653 Return from Witch Mountain (1978) 43\n",
"2.69417434986 Outbreak (1995) 42\n",
"2.69313304912 Faraway, So Close (In Weiter Ferne, So Nah!) (1993) 35\n",
"2.69291154504 Earth Vs. the Flying Saucers (1956) 40\n",
"2.69252720196 Live Nude Girls (1995) 47\n",
"2.69235191887 Barefoot in the Park (1967) 45\n",
"2.69071266214 Single White Female (1992) 38\n",
"2.69024591104 Stepmom (1998) 46\n",
"2.6897382408 U-571 (2000) 30\n",
"2.68962342501 Barcelona (1994) 38\n",
"2.68953733249 Farinelli: il castrato (1994) 45\n",
"2.68933234024 Mirror Has Two Faces, The (1996) 50\n",
"2.68860886924 Peggy Sue Got Married (1986) 34\n",
"2.68856080276 Twister (1996) 46\n",
"2.6885543328 Skulls, The (2000) 48\n",
"2.68801491729 Miracle on 34th Street (1994) 45\n",
"2.68783616444 Prophecy II, The (1998) 41\n",
"2.68735847942 Eyes of Laura Mars (1978) 47\n",
"2.68690528493 On Her Majesty's Secret Service (1969) 35\n",
"2.68651457005 Matilda (1996) 46\n",
"2.68636535025 Jumanji (1995) 48\n",
"2.68635403775 Romy and Michele's High School Reunion (1997) 35\n",
"2.68556145508 Friends & Lovers (1999) 47\n",
"2.68494484695 Copycat (1995) 38\n",
"2.6845758106 About Last Night... (1986) 42\n",
"2.68392663812 Polish Wedding (1998) 46\n",
"2.68382440787 Blob, The (1958) 33\n",
"2.68339591777 Five Senses, The (1999) 44\n",
"2.68280545458 Doom Generation, The (1995) 45\n",
"2.68241501308 He Got Game (1998) 33\n",
"2.68238449965 Backdraft (1991) 32\n",
"2.68177519521 G.I. Jane (1997) 50\n",
"2.68175114144 Detroit Rock City (1999) 33\n",
"2.68162018719 Love Affair (1994) 44\n",
"2.67846412212 House on Haunted Hill (1958) 45\n",
"2.67804014468 Fled (1996) 40\n",
"2.67785120315 Heavy (1995) 41\n",
"2.67763885714 Heavy Metal (1981) 34\n",
"2.67693397097 Hackers (1995) 39\n",
"2.67690813332 Fools Rush In (1997) 46\n",
"2.67665356275 Voyage to the Bottom of the Sea (1961) 36\n",
"2.67648755865 Prizzi's Honor (1985) 34\n",
"2.67645645242 Dragonheart (1996) 43\n",
"2.67543201812 Mad Max Beyond Thunderdome (1985) 39\n",
"2.67535648519 Mole People, The (1956) 36\n",
"2.67520113684 Felicia's Journey (1999) 30\n",
"2.67422128275 Escape to Witch Mountain (1975) 38\n",
"2.67388521083 Butcher's Wife, The (1991) 45\n",
"2.67373850586 Beneath the Planet of the Apes (1970) 36\n",
"2.67346354583 Mimic (1997) 37\n",
"2.67271705531 Man Bites Dog (C'est arriv\u00e9 pr\u00e8s de chez vous) (1992) 34\n",
"2.67268678333 Three to Tango (1999) 49\n",
"2.67203724669 Babe: Pig in the City (1998) 35\n",
"2.67100862672 Man Without a Face, The (1993) 33\n",
"2.67075698131 Cocoon: The Return (1988) 41\n",
"2.66974022533 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996) 43\n",
"2.6692967041 Towering Inferno, The (1974) 44\n",
"2.66903531013 Honey, I Shrunk the Kids (1989) 45\n",
"2.66901866625 Relic, The (1997) 42\n",
"2.6679659664 Runaway Bride (1999) 53\n",
"2.66746527267 Mouse Hunt (1997) 33\n",
"2.66733599111 Wolf (1994) 43\n",
"2.66732280766 Life with Mikey (1993) 42\n",
"2.66714137765 Mighty Ducks, The (1992) 44\n",
"2.66700219056 Bad Boys (1995) 37\n",
"2.66682850362 Legend (1985) 35\n",
"2.6662395321 Tarantula (1955) 38\n",
"2.66588235589 Cruel Intentions (1999) 40\n",
"2.66545559619 Woman on Top (2000) 40\n",
"2.66483834776 White Men Can't Jump (1992) 25\n",
"2.66455310242 White Balloon, The (Badkonake Sefid ) (1995) 47\n",
"2.66433209524 Play it to the Bone (1999) 38\n",
"2.66403765409 2 Days in the Valley (1996) 30\n",
"2.66302442959 Just Cause (1995) 44\n",
"2.66073330795 Pagemaster, The (1994) 36\n",
"2.66035047566 Deep Impact (1998) 44\n",
"2.66017668025 Holy Smoke (1999) 45\n",
"2.65999270582 Boomerang (1992) 43\n",
"2.65964869332 Toxic Avenger, The (1985) 26\n",
"2.65924423996 Scream 3 (2000) 41\n",
"2.65871508707 Distinguished Gentleman, The (1992) 45\n",
"2.65861825072 Tommy (1975) 38\n",
"2.65772031337 Any Given Sunday (1999) 43\n",
"2.65694475062 Fog, The (1980) 35\n",
"2.65644857979 Dance with Me (1998) 48\n",
"2.6560248298 St. Elmo's Fire (1985) 47\n",
"2.65592524248 Tales from the Hood (1995) 37\n",
"2.65505428333 Sesame Street Presents Follow That Bird (1985) 33\n",
"2.65446284205 Tequila Sunrise (1988) 39\n",
"2.65401903852 Wood, The (1999) 39\n",
"2.65384736449 Wing Commander (1999) 44\n",
"2.65379810717 Sommersby (1993) 49\n",
"2.65271222888 MacKenna's Gold (1969) 43\n",
"2.6521971006 My Science Project (1985) 40\n",
"2.65050657683 Herbie Goes Bananas (1980) 42\n",
"2.65038979809 Prefontaine (1997) 41\n",
"2.65017245737 Friday the 13th (1980) 31\n",
"2.65012013002 In the Mouth of Madness (1995) 41\n",
"2.6501167077 King of New York (1990) 32\n",
"2.64995365394 Final Destination (2000) 41\n",
"2.64985769576 Bless the Child (2000) 38\n",
"2.64895339473 Payback (1999) 24\n",
"2.64872963323 Hunchback of Notre Dame, The (1996) 46\n",
"2.64846595669 Hoodlum (1997) 35\n",
"2.64769975054 Crow, The (1994) 26\n",
"2.64757216903 River, The (1984) 42\n",
"2.64753966535 Where the Buffalo Roam (1980) 34\n",
"2.64749621689 Under Siege (1992) 34\n",
"2.64679962934 Candyman (1992) 34\n",
"2.64571000075 Gate, The (1987) 44\n",
"2.64564568393 Bad Taste (1987) 40\n",
"2.64551263226 Pal Joey (1957) 46\n",
"2.64519831421 Jewel of the Nile, The (1985) 44\n",
"2.64490309756 Pitch Black (2000) 23\n",
"2.64351270522 Nell (1994) 45\n",
"2.64232515878 Great White Hype, The (1996) 37\n",
"2.64232124803 Kid, The (2000) 45\n",
"2.64218279731 Newsies (1992) 57\n",
"2.6420426785 Red Dawn (1984) 39\n",
"2.64166905764 Swamp Thing (1982) 41\n",
"2.63949679806 But I'm a Cheerleader (1999) 36\n",
"2.63825072152 101 Dalmatians (1996) 46\n",
"2.63784545351 Beyond the Mat (2000) 34\n",
"2.63746135848 Up in Smoke (1978) 22\n",
"2.63746120855 For Love or Money (1993) 39\n",
"2.63735552026 First Wives Club, The (1996) 47\n",
"2.63719549243 Extreme Measures (1996) 31\n",
"2.63716028467 Candleshoe (1977) 42\n",
"2.63695667083 Against All Odds (1984) 37\n",
"2.63692541859 Little Buddha (1993) 39\n",
"2.63586366569 Mosquito Coast, The (1986) 34\n",
"2.63585200147 Two Moon Juction (1988) 44\n",
"2.63546733785 King Creole (1958) 35\n",
"2.63461309969 General's Daughter, The (1999) 42\n",
"2.63414847237 Varsity Blues (1999) 42\n",
"2.63411552351 North Dallas Forty (1979) 37\n",
"2.63385891844 All Dogs Go to Heaven 2 (1996) 44\n",
"2.63374508148 Michael Collins (1996) 41\n",
"2.63372563638 Lightning Jack (1994) 40\n",
"2.63368080415 Low Down Dirty Shame, A (1994) 40\n",
"2.63310719123 Entrapment (1999) 44\n",
"2.63309147244 Apple Dumpling Gang Rides Again, The (1979) 47\n",
"2.63283777528 Battle for the Planet of the Apes (1973) 42\n",
"2.63130057518 Forget Paris (1995) 45\n",
"2.63071839651 Force 10 from Navarone (1978) 30\n",
"2.63050829837 Muppet Treasure Island (1996) 40\n",
"2.6289204574 Braddock: Missing in Action III (1988) 48\n",
"2.62852323225 Where the Heart Is (2000) 36\n",
"2.62808278769 Replacement Killers, The (1998) 41\n",
"2.62787046935 Falling Down (1993) 32\n",
"2.62786158628 Kids in the Hall: Brain Candy (1996) 35\n",
"2.6276579623 Something to Talk About (1995) 44\n",
"2.62762160691 Batman Returns (1992) 43\n",
"2.62744928283 Mulholland Falls (1996) 45\n",
"2.62702871696 MatchMaker, The (1997) 43\n",
"2.62652106397 Little Rascals, The (1994) 40\n",
"2.62528578987 To Wong Foo, Thanks for Everything! Julie Newmar (1995) 42\n",
"2.62522385288 Two Jakes, The (1990) 42\n",
"2.62502666347 Earthquake (1974) 37\n",
"2.62453783857 Money Pit, The (1986) 48\n",
"2.6241817774 Jungle Book, The (1994) 32\n",
"2.62318738037 Sirens (1994) 35\n",
"2.62279563437 Arachnophobia (1990) 29\n",
"2.62212842113 Buffy the Vampire Slayer (1992) 24\n",
"2.62182737967 Harry and the Hendersons (1987) 45\n",
"2.62127387606 Perfect Murder, A (1998) 39\n",
"2.62106710212 Bed of Roses (1996) 49\n",
"2.62085773544 First Knight (1995) 45\n",
"2.62005913769 Pit and the Pendulum (1961) 44\n",
"2.61922324166 Dear God (1996) 43\n",
"2.6191452191 Ready to Rumble (2000) 36\n",
"2.61898899604 All Dogs Go to Heaven (1989) 38\n",
"2.61858239593 How Stella Got Her Groove Back (1998) 37\n",
"2.61853602223 Drop Zone (1994) 42\n",
"2.61848409177 Condorman (1981) 42\n",
"2.61801426125 Dead Man on Campus (1998) 40\n",
"2.61775101726 Young Doctors in Love (1982) 43\n",
"2.61676504177 Living Out Loud (1998) 37\n",
"2.6166254826 Indian in the Cupboard, The (1995) 37\n",
"2.61624463421 Lost World: Jurassic Park, The (1997) 45\n",
"2.61590308791 Siege, The (1998) 32\n",
"2.61576479215 Missing in Action 2: The Beginning (1985) 46\n",
"2.61556424347 She's All That (1999) 42\n",
"2.61536574196 Kurt & Courtney (1998) 39\n",
"2.61521034249 Big Momma's House (2000) 45\n",
"2.61343936596 Iron Eagle IV (1995) 48\n",
"2.6119161128 Groove (2000) 54\n",
"2.61132746379 Kiss the Girls (1997) 46\n",
"2.61126761448 It Came from Beneath the Sea (1955) 38\n",
"2.61071445041 Prince of Tides, The (1991) 47\n",
"2.61067663816 Celebrity (1998) 47\n",
"2.61061195117 James and the Giant Peach (1996) 35\n",
"2.6098789991 Beach, The (2000) 44\n",
"2.60976572936 Rugrats Movie, The (1998) 40\n",
"2.60976345109 Return of the Fly (1959) 47\n",
"2.60937339024 Bronco Billy (1980) 48\n",
"2.60890369187 Baby... Secret of the Lost Legend (1985) 43\n",
"2.60889696226 Pelican Brief, The (1993) 45\n",
"2.60817141743 Firestorm (1998) 43\n",
"2.60685336394 Nutty Professor II: The Klumps (2000) 42\n",
"2.605698391 Eraser (1996) 40\n",
"2.60518910061 Beyond Rangoon (1995) 38\n",
"2.60474252348 Pocahontas (1995) 43\n",
"2.60251108434 House (1986) 36\n",
"2.60217284463 Santa Claus: The Movie (1985) 44\n",
"2.60105130563 Married to the Mob (1988) 44\n",
"2.60096414475 Black and White (1999) 41\n",
"2.60017493933 Child's Play 2 (1990) 35\n",
"2.60014667675 Twilight (1998) 32\n",
"2.59919600801 Eye for an Eye (1996) 31\n",
"2.59917544382 Soldier (1998) 42\n",
"2.5989380459 Thunderbolt and Lightfoot (1974) 33\n",
"2.59879044266 Star Kid (1997) 41\n",
"2.59869532283 Breakfast of Champions (1999) 32\n",
"2.59853901177 Space Jam (1996) 46\n",
"2.59720393838 Texas Chainsaw Massacre 2, The (1986) 29\n",
"2.5971812429 Black Dog (1998) 43\n",
"2.5971304679 Romeo Must Die (2000) 38\n",
"2.5969440167 Tom and Huck (1995) 46\n",
"2.59687036243 Color of Paradise, The (Rang-e Khoda) (1999) 44\n",
"2.59678565963 Angels in the Outfield (1994) 40\n",
"2.59674187854 Repo Man (1984) 20\n",
"2.5961023773 Walk in the Clouds, A (1995) 50\n",
"2.59567416638 How to Be a Player (1997) 52\n",
"2.59530075916 Bodyguard, The (1992) 51\n",
"2.59504923949 Free Willy (1993) 41\n",
"2.59469270392 Halloween II (1981) 39\n",
"2.59333961054 Inventing the Abbotts (1997) 38\n",
"2.59311729622 Double Jeopardy (1999) 48\n",
"2.59310049674 Daylight (1996) 43\n",
"2.59307180745 Hard Target (1993) 41\n",
"2.59304443108 What Planet Are You From? (2000) 36\n",
"2.59181493622 Cobb (1994) 33\n",
"2.59178834643 Big Hit, The (1998) 42\n",
"2.59126785913 Showgirls (1995) 43\n",
"2.5909480313 Blame It on Rio (1984) 45\n",
"2.59089790467 Tales from the Darkside: The Movie (1990) 27\n",
"2.5907523302 Hope Floats (1998) 48\n",
"2.5906768233 Crooklyn (1994) 34\n",
"2.59065397329 Addams Family Values (1993) 31\n",
"2.58995936881 Rocketeer, The (1991) 42\n",
"2.58994069671 Amityville Horror, The (1979) 42\n",
"2.58843593532 Arrival, The (1996) 44\n",
"2.58796524558 Body Snatcher, The (1945) 40\n",
"2.58755032515 Batman & Robin (1997) 48\n",
"2.58739550095 Murder at 1600 (1997) 40\n",
"2.58733779849 Road to El Dorado, The (2000) 43\n",
"2.58729968079 Air Up There, The (1994) 43\n",
"2.58703057528 Addams Family, The (1991) 32\n",
"2.58697013733 Plan 9 from Outer Space (1958) 33\n",
"2.58515123282 Reindeer Games (2000) 35\n",
"2.5848782435 Honeymoon in Vegas (1992) 40\n",
"2.58475487426 Scout, The (1994) 43\n",
"2.58460459919 Seven Years in Tibet (1997) 33\n",
"2.58455423547 Black Mask (Hak hap) (1996) 36\n",
"2.58447952817 Perfect Storm, The (2000) 32\n",
"2.58433070577 Freejack (1992) 50\n",
"2.58408238737 Poison Ivy: New Seduction (1997) 50\n",
"2.58408157826 End of Violence, The (1997) 47\n",
"2.58375565897 Iron Eagle (1986) 45\n",
"2.58372428357 Devil and Max Devlin, The (1981) 48\n",
"2.58357421081 Twin Peaks: Fire Walk with Me (1992) 36\n",
"2.58310684698 Judgment Night (1993) 45\n",
"2.5829586537 Dick Tracy (1990) 48\n",
"2.58243683538 Cliffhanger (1993) 45\n",
"2.58207856455 Jerky Boys, The (1994) 47\n",
"2.58159324125 Joe's Apartment (1996) 31\n",
"2.58128768155 Austin Powers: The Spy Who Shagged Me (1999) 24\n",
"2.58078068711 Rocky Horror Picture Show, The (1975) 24\n",
"2.57994621505 Renaissance Man (1994) 45\n",
"2.57986856743 Six Days Seven Nights (1998) 40\n",
"2.57972292943 Transformers: The Movie, The (1986) 27\n",
"2.57951992953 Airport (1970) 41\n",
"2.57891339416 How to Make an American Quilt (1995) 43\n",
"2.57820430108 Blue Streak (1999) 33\n",
"2.57791021969 Restoration (1995) 30\n",
"2.57767471162 Duets (2000) 38\n",
"2.57749079982 Mr. Saturday Night (1992) 42\n",
"2.57715694417 Alien: Resurrection (1997) 40\n",
"2.57644911368 Get Carter (2000) 49\n",
"2.57548304922 Stuart Little (1999) 43\n",
"2.57504495118 20 Dates (1998) 39\n",
"2.57483569449 What Lies Beneath (2000) 36\n",
"2.5736394281 Robin Hood: Prince of Thieves (1991) 42\n",
"2.57308973706 Soul Man (1986) 44\n",
"2.57256136758 Michael (1996) 46\n",
"2.5725610266 Piranha (1978) 34\n",
"2.57203622364 Encino Man (1992) 39\n",
"2.57125508599 Tin Cup (1996) 40\n",
"2.57124562118 Toxic Avenger Part III: The Last Temptation of Toxie, The (1989) 41\n",
"2.57122738335 Hamlet (1964) 41\n",
"2.57084995207 I Saw What You Did (1965) 41\n",
"2.57059844995 Beverly Hills Cop III (1994) 45\n",
"2.56932151568 Virtuosity (1995) 49\n",
"2.56908270294 Last Man Standing (1996) 42\n",
"2.56864381802 Swing Kids (1993) 40\n",
"2.56859869675 Black Cauldron, The (1985) 33\n",
"2.56836268872 Powder (1995) 47\n",
"2.568232873 Screwed (2000) 40\n",
"2.56794802496 Barbarella (1968) 33\n",
"2.56785367193 Stuart Saves His Family (1995) 43\n",
"2.56725475115 Armageddon (1998) 48\n",
"2.56693460684 Hunger, The (1983) 33\n",
"2.56687513148 Truth or Consequences, N.M. (1997) 45\n",
"2.566597306 Star Trek: The Motion Picture (1979) 45\n",
"2.56547469122 Marked for Death (1990) 41\n",
"2.56487570146 Halloween III: Season of the Witch (1983) 28\n",
"2.5644793171 Cowboy Way, The (1994) 42\n",
"2.56440700851 Toxic Avenger, Part II, The (1989) 32\n",
"2.56383247702 Adventures of Buckaroo Bonzai Across the 8th Dimension, The (1984) 32\n",
"2.563819356 Iron Eagle II (1988) 42\n",
"2.56367020136 Adventures of Pinocchio, The (1996) 39\n",
"2.56354605615 28 Days (2000) 41\n",
"2.56343560005 Even Cowgirls Get the Blues (1993) 51\n",
"2.56288449309 Man Who Knew Too Little, The (1997) 31\n",
"2.56278428365 Spice World (1997) 45\n",
"2.56183973821 Outrageous Fortune (1987) 46\n",
"2.56132764373 Crucible, The (1996) 36\n",
"2.56121617523 Pest, The (1997) 46\n",
"2.56120623874 Lake Placid (1999) 44\n",
"2.56114005739 Son of Flubber (1963) 39\n",
"2.56098259294 Evita (1996) 43\n",
"2.56024720845 Nick of Time (1995) 40\n",
"2.55986684712 Monkey Shines (1988) 37\n",
"2.55986269475 Down to You (2000) 42\n",
"2.55981251371 Missing in Action (1984) 44\n",
"2.55974467052 Deep End of the Ocean, The (1999) 38\n",
"2.55954220075 Karate Kid III, The (1989) 45\n",
"2.55946224576 Father of the Bride Part II (1995) 46\n",
"2.55898150636 Anywhere But Here (1999) 36\n",
"2.55879235759 Jade (1995) 39\n",
"2.55819824374 Jungle2Jungle (a.k.a. Jungle 2 Jungle) (1997) 41\n",
"2.55805145521 Mallrats (1995) 30\n",
"2.55746672275 Hook (1991) 53\n",
"2.55735582574 Blue Hawaii (1961) 43\n",
"2.55695115258 Universal Soldier (1992) 47\n",
"2.55694375913 Snow Falling on Cedars (1999) 39\n",
"2.55678642165 Cat's Eye (1985) 40\n",
"2.55638231927 Tank Girl (1995) 39\n",
"2.55613046072 Little Big League (1994) 41\n",
"2.55603097107 Meet Joe Black (1998) 31\n",
"2.55573052861 Pumpkinhead (1988) 36\n",
"2.55539569005 Toys (1992) 43\n",
"2.55534221636 That Darn Cat! (1997) 28\n",
"2.5547292431 Gung Ho (1986) 44\n",
"2.55467559571 Postman, The (1997) 48\n",
"2.55455063486 Pok\u00e9mon the Movie 2000 (2000) 37\n",
"2.55428564497 Popeye (1980) 48\n",
"2.55405442715 Shaft (1971) 25\n",
"2.5536018469 Computer Wore Tennis Shoes, The (1970) 50\n",
"2.55307624824 Kull the Conqueror (1997) 43\n",
"2.55303686362 Indecent Proposal (1993) 49\n",
"2.55284867809 Loser (2000) 41\n",
"2.55237623049 If Lucy Fell (1996) 44\n",
"2.55223537733 Oliver & Company (1988) 38\n",
"2.55201779747 Hard Rain (1998) 39\n",
"2.55184332901 Child's Play (1988) 37\n",
"2.55181268094 Made in America (1993) 42\n",
"2.55175728721 Flintstones, The (1994) 44\n",
"2.55161520136 Amos & Andrew (1993) 41\n",
"2.55158750001 Fatal Beauty (1987) 41\n",
"2.55121453252 Angela's Ashes (1999) 31\n",
"2.55103478914 Brothers McMullen, The (1995) 34\n",
"2.55072324116 Rising Sun (1993) 43\n",
"2.55014612919 Celtic Pride (1996) 41\n",
"2.55003390926 One Fine Day (1996) 47\n",
"2.54996137877 Great Expectations (1998) 38\n",
"2.54944166179 Red Sonja (1985) 45\n",
"2.54907796841 Godzilla (1998) 47\n",
"2.54904808143 Booty Call (1997) 50\n",
"2.54900305534 Airheads (1994) 44\n",
"2.54878746658 Beavis and Butt-head Do America (1996) 24\n",
"2.54874533268 Net, The (1995) 45\n",
"2.5479964967 Rules of Engagement (2000) 29\n",
"2.54794665345 Orlando (1993) 34\n",
"2.54737026416 Nightmare on Elm Street Part 2: Freddy's Revenge, A (1985) 35\n",
"2.54714030826 No Mercy (1986) 49\n",
"2.54664791568 Never Been Kissed (1999) 50\n",
"2.54638548547 Date with an Angel (1987) 42\n",
"2.5457072964 Frankenstein Meets the Wolf Man (1943) 42\n",
"2.5449631953 Who's That Girl? (1987) 45\n",
"2.54495775243 Escape from the Planet of the Apes (1971) 29\n",
"2.54484707359 Tin Men (1987) 35\n",
"2.54473084934 Fan, The (1996) 41\n",
"2.54448586483 Substitute, The (1996) 36\n",
"2.54357214726 U.S. Marshalls (1998) 39\n",
"2.54335921744 Superman III (1983) 47\n",
"2.54322859498 Village of the Damned (1995) 34\n",
"2.54302080229 Drop Dead Fred (1991) 45\n",
"2.54157427625 Creepshow 2 (1987) 41\n",
"2.5411186898 At First Sight (1999) 30\n",
"2.54089291627 Hot Shots! Part Deux (1993) 37\n",
"2.54018124013 American Werewolf in Paris, An (1997) 39\n",
"2.54017766795 Inspector Gadget (1999) 43\n",
"2.53983602091 Crash (1996) 34\n",
"2.53977446441 Milk Money (1994) 44\n",
"2.539472731 I.Q. (1994) 42\n",
"2.53873889875 Pallbearer, The (1996) 40\n",
"2.53868633699 Something Wicked This Way Comes (1983) 25\n",
"2.53855523274 Ninth Gate, The (2000) 41\n",
"2.53808317983 Someone to Watch Over Me (1987) 36\n",
"2.53777385841 Jingle All the Way (1996) 42\n",
"2.53774387551 Steel (1997) 40\n",
"2.5376769023 Bachelor Party (1984) 35\n",
"2.53747327293 Phantoms (1998) 38\n",
"2.53715644621 Home Alone 2: Lost in New York (1992) 45\n",
"2.53618603165 Disclosure (1994) 36\n",
"2.53557260174 Drop Dead Gorgeous (1999) 30\n",
"2.53550533591 Brokedown Palace (1999) 45\n",
"2.53498276121 Operation Condor (Feiying gaiwak) (1990) 29\n",
"2.53470843406 Three Musketeers, The (1993) 42\n",
"2.53456540742 Deep Blue Sea (1999) 44\n",
"2.53447667473 Palmetto (1998) 54\n",
"2.53417513489 Meatballs (1979) 23\n",
"2.53363247375 Hellraiser III: Hell on Earth (1992) 35\n",
"2.53335268966 Herbie Rides Again (1974) 38\n",
"2.53326269871 Leatherface: Texas Chainsaw Massacre III (1990) 32\n",
"2.53310911397 Weekend at Bernie's (1989) 43\n",
"2.53310342028 Guinevere (1999) 40\n",
"2.53286813697 Crush, The (1993) 31\n",
"2.53270165437 Rocket Man (1997) 43\n",
"2.53259163833 Swan Princess, The (1994) 43\n",
"2.53145845239 Blind Date (1987) 45\n",
"2.53136330747 Black Hole, The (1979) 40\n",
"2.53107827048 Dark Half, The (1993) 45\n",
"2.53102108799 Mad City (1997) 40\n",
"2.53093689122 Goofy Movie, A (1995) 36\n",
"2.53061629144 Stargate (1994) 36\n",
"2.53052874439 Gossip (2000) 39\n",
"2.52991419475 Why Do Fools Fall In Love? (1998) 35\n",
"2.52930088516 Bridge at Remagen, The (1969) 30\n",
"2.52883203543 Class (1983) 45\n",
"2.52849289973 Timecop (1994) 43\n",
"2.5281740299 Death Wish II (1982) 39\n",
"2.52810667486 Super Mario Bros. (1993) 44\n",
"2.52802488701 Color of Night (1994) 45\n",
"2.52751358883 Grease 2 (1982) 48\n",
"2.52737977295 Blue Lagoon, The (1980) 47\n",
"2.52722845505 Next Best Thing, The (2000) 39\n",
"2.52705993047 Preacher's Wife, The (1996) 37\n",
"2.5253867223 Hero (1992) 48\n",
"2.52536766878 Young Guns II (1990) 47\n",
"2.52432110325 Geronimo: An American Legend (1993) 39\n",
"2.5240233883 Nothing in Common (1986) 41\n",
"2.5227128878 Lost & Found (1999) 46\n",
"2.52219956367 Natural Born Killers (1994) 24\n",
"2.52212042368 Mary Reilly (1996) 43\n",
"2.52189663844 Lolita (1997) 24\n",
"2.52149056198 NeverEnding Story II: The Next Chapter, The (1990) 39\n",
"2.52134104506 Flipper (1996) 36\n",
"2.52102155976 Batman Forever (1995) 47\n",
"2.52050295857 Corruptor, The (1999) 34\n",
"2.52029542371 Free Willy 3: The Rescue (1997) 41\n",
"2.52012741862 Practical Magic (1998) 47\n",
"2.51938467197 Glimmer Man, The (1996) 46\n",
"2.51924119842 Fatal Instinct (1993) 41\n",
"2.51919963831 Half Baked (1998) 36\n",
"2.51916555931 Mummy, The (1959) 35\n",
"2.51897001358 Jerry Springer: Ringmaster (1998) 40\n",
"2.5189347691 Mystery Men (1999) 32\n",
"2.51872228338 Conan the Barbarian (1982) 27\n",
"2.51841494481 13th Warrior, The (1999) 22\n",
"2.51796375809 Ace Ventura: When Nature Calls (1995) 37\n",
"2.51761336539 Easy Money (1983) 33\n",
"2.51736023524 Golden Child, The (1986) 47\n",
"2.51651032949 Beverly Hills Ninja (1997) 43\n",
"2.51571828371 Grumpier Old Men (1995) 43\n",
"2.51567704761 Dante's Peak (1997) 46\n",
"2.51532066299 Armed and Dangerous (1986) 38\n",
"2.51506366054 She's the One (1996) 40\n",
"2.51483892592 Airport '77 (1977) 45\n",
"2.51462633029 Rambo: First Blood Part II (1985) 41\n",
"2.51405237551 From Dusk Till Dawn (1996) 29\n",
"2.51400923817 Ghostbusters II (1989) 43\n",
"2.5139488274 Trigger Effect, The (1996) 37\n",
"2.51333850066 Kingpin (1996) 21\n",
"2.51279629415 Thinner (1996) 34\n",
"2.51274205377 Kama Sutra: A Tale of Love (1996) 36\n",
"2.51267992734 Can't Hardly Wait (1998) 35\n",
"2.51241686797 Original Kings of Comedy, The (2000) 44\n",
"2.51222426934 Universal Soldier: The Return (1999) 43\n",
"2.5121025703 Love Letter, The (1999) 38\n",
"2.51188870413 Boys and Girls (2000) 33\n",
"2.5116792172 Clan of the Cave Bear, The (1986) 42\n",
"2.51100685791 Solo (1996) 49\n",
"2.51079527142 Escape from L.A. (1996) 41\n",
"2.51065607301 Jennifer 8 (1992) 40\n",
"2.51041729987 George of the Jungle (1997) 31\n",
"2.51004699769 Children of the Corn (1984) 39\n",
"2.51003359425 Mighty Joe Young (1998) 42\n",
"2.50990877115 Stanley & Iris (1990) 41\n",
"2.50938340938 Haunted Honeymoon (1986) 36\n",
"2.50806807786 Fire Down Below (1997) 43\n",
"2.50794305739 Bats (1999) 39\n",
"2.50785015234 Almost Heroes (1998) 39\n",
"2.50627777557 Supercop (1992) 27\n",
"2.5060085865 Conquest of the Planet of the Apes (1972) 35\n",
"2.50522986807 Mercury Rising (1998) 41\n",
"2.50475816209 Cutthroat Island (1995) 40\n",
"2.50439147635 Messenger: The Story of Joan of Arc, The (1999) 42\n",
"2.5043400961 Chamber, The (1996) 32\n",
"2.5042918491 Shakes the Clown (1991) 41\n",
"2.50411886984 Twin Dragons (Shuang long hui) (1992) 38\n",
"2.50388083151 Senseless (1998) 43\n",
"2.50378435456 Jaws 2 (1978) 48\n",
"2.50370377149 Here on Earth (2000) 43\n",
"2.50274926647 'burbs, The (1989) 38\n",
"2.5024660103 Crow: City of Angels, The (1996) 45\n",
"2.50169109314 Hollow Man (2000) 46\n",
"2.50156586374 Paulie (1998) 37\n",
"2.50136161379 Apt Pupil (1998) 31\n",
"2.50032824649 Superman IV: The Quest for Peace (1987) 47\n",
"2.50024812285 Karate Kid, Part II, The (1986) 44\n",
"2.50023302546 Days of Thunder (1990) 41\n",
"2.50020776094 Running Man, The (1987) 31\n",
"2.49924763096 Devil's Own, The (1997) 44\n",
"2.49872766635 Battlefield Earth (2000) 44\n",
"2.49852782024 Bird on a Wire (1990) 47\n",
"2.49824146656 Who's Harry Crumb? (1989) 45\n",
"2.49812306297 House II: The Second Story (1987) 43\n",
"2.49765310362 Fierce Creatures (1997) 33\n",
"2.49738992202 Chain Reaction (1996) 43\n",
"2.49673425937 Mortal Kombat: Annihilation (1997) 46\n",
"2.49605431855 Hellbound: Hellraiser II (1988) 37\n",
"2.49596682694 Broken Arrow (1996) 44\n",
"2.49567509517 Mickey Blue Eyes (1999) 45\n",
"2.49557582233 Rocky V (1990) 46\n",
"2.49547131113 Rambo III (1988) 48\n",
"2.49543459885 Honey, I Blew Up the Kid (1992) 39\n",
"2.49542044383 Alien\u00b3 (1992) 44\n",
"2.49503999586 Snow Day (2000) 39\n",
"2.49470637413 Art of War, The (2000) 40\n",
"2.49458937106 Cat from Outer Space, The (1978) 36\n",
"2.49437871813 Babysitter, The (1995) 39\n",
"2.49410521452 Jakob the Liar (1999) 42\n",
"2.49383166731 Sleepwalkers (1992) 40\n",
"2.49356735312 Congo (1995) 48\n",
"2.49349841678 Class of Nuke 'Em High (1986) 30\n",
"2.49338013094 Funny Farm (1988) 43\n",
"2.49331585965 Bram Stoker's Dracula (1992) 41\n",
"2.49270877172 Back to School (1986) 27\n",
"2.49250417045 Dying Young (1991) 45\n",
"2.49223567548 Empire Records (1995) 41\n",
"2.49120092052 Vegas Vacation (1997) 45\n",
"2.49112762152 Nutty Professor, The (1996) 37\n",
"2.49078711215 I Know What You Did Last Summer (1997) 45\n",
"2.4903380994 Night on Earth (1991) 27\n",
"2.48975405891 My Chauffeur (1986) 46\n",
"2.4888859299 Minus Man, The (1999) 30\n",
"2.48881526615 Down Periscope (1996) 36\n",
"2.48840435598 Loaded Weapon 1 (1993) 41\n",
"2.48833573151 EDtv (1999) 38\n",
"2.48801291439 Kid in King Arthur's Court, A (1995) 42\n",
"2.48690668948 Rocky II (1979) 36\n",
"2.48640328164 Howard the Duck (1986) 44\n",
"2.48617663274 Sister Act 2: Back in the Habit (1993) 41\n",
"2.48496930056 I Dreamed of Africa (2000) 44\n",
"2.48488525273 Doctor Dolittle (1998) 46\n",
"2.4843096643 Mission to Mars (2000) 45\n",
"2.48416040349 Out to Sea (1997) 27\n",
"2.48410058117 Exit to Eden (1994) 43\n",
"2.4840627904 Road to Wellville, The (1994) 45\n",
"2.4838438357 Rocky IV (1985) 46\n",
"2.48376511009 Major League: Back to the Minors (1998) 43\n",
"2.48325303734 Island of Dr. Moreau, The (1996) 45\n",
"2.48271956299 European Vacation (1985) 45\n",
"2.48164695296 Dead Presidents (1995) 40\n",
"2.48152027102 Sheltering Sky, The (1990) 46\n",
"2.4814270497 Diabolique (1996) 33\n",
"2.48134216948 First Blood (1982) 27\n",
"2.48114355693 Predator 2 (1990) 42\n",
"2.48066577092 Odd Couple II, The (1998) 42\n",
"2.47991972953 For Richer or Poorer (1997) 38\n",
"2.47976997858 Judge Dredd (1995) 46\n",
"2.47961529346 Crocodile Dundee II (1988) 47\n",
"2.479499757 Liar Liar (1997) 27\n",
"2.47913907032 Things to Do in Denver when You're Dead (1995) 31\n",
"2.47876634002 Screamers (1995) 24\n",
"2.47772803541 Burglar (1987) 46\n",
"2.47770765481 Lords of Flatbush, The (1974) 42\n",
"2.47765670005 Puppet Master II (1990) 35\n",
"2.47710890475 Junior (1994) 39\n",
"2.47684484882 Poltergeist II: The Other Side (1986) 40\n",
"2.47625542464 Tales From the Crypt Presents: Demon Knight (1995) 31\n",
"2.47608500517 Caligula (1980) 37\n",
"2.47533744474 Dracula (1958) 38\n",
"2.4752265283 Maximum Overdrive (1986) 47\n",
"2.4751922141 Aladdin and the King of Thieves (1996) 34\n",
"2.47506521495 Phantom, The (1996) 39\n",
"2.47489964378 Nadine (1987) 45\n",
"2.47465186826 No Escape (1994) 35\n",
"2.47442471339 City Slickers II: The Legend of Curly's Gold (1994) 45\n",
"2.47391305732 Mixed Nuts (1994) 48\n",
"2.47342115977 Jack (1996) 40\n",
"2.47263936804 Street Fighter (1994) 44\n",
"2.472300934 Tough Guys (1986) 38\n",
"2.47198902332 Blues Brothers 2000 (1998) 42\n",
"2.4712124938 Peter's Friends (1992) 48\n",
"2.47035314088 Lost in Space (1998) 47\n",
"2.47033956161 Cabin Boy (1994) 32\n",
"2.47026606018 Bio-Dome (1996) 38\n",
"2.4701655421 Jackie Chan's First Strike (1996) 31\n",
"2.46980493278 High School High (1996) 42\n",
"2.46946161598 Under the Rainbow (1981) 46\n",
"2.46857560395 Friday the 13th Part 2 (1981) 37\n",
"2.4680424052 For Love of the Game (1999) 38\n",
"2.46797843905 Godzilla 2000 (Gojira ni-sen mireniamu) (1999) 36\n",
"2.46764685523 Star Trek V: The Final Frontier (1989) 46\n",
"2.46761701843 Jack Frost (1998) 43\n",
"2.46756931994 Borrowers, The (1997) 41\n",
"2.46725464996 Trial and Error (1997) 41\n",
"2.46715119168 Another Stakeout (1993) 41\n",
"2.46699129964 Meatballs Part II (1984) 40\n",
"2.46671849912 Volunteers (1985) 45\n",
"2.46641483012 Breathless (1983) 43\n",
"2.46612445629 Night of the Creeps (1986) 32\n",
"2.46512236605 Firestarter (1984) 41\n",
"2.46495703077 Faculty, The (1998) 36\n",
"2.46491351508 Flintstones in Viva Rock Vegas, The (2000) 43\n",
"2.46485832729 Air Bud: Golden Receiver (1998) 45\n",
"2.46468711706 Mighty Morphin Power Rangers: The Movie (1995) 37\n",
"2.46455779032 Problem Child (1990) 37\n",
"2.46439414037 Dune (1984) 33\n",
"2.46360327514 Beverly Hillbillies, The (1993) 46\n",
"2.46344225732 Action Jackson (1988) 42\n",
"2.46337926721 Speed 2: Cruise Control (1997) 44\n",
"2.46187554645 Cujo (1983) 44\n",
"2.46134400655 House Party 2 (1991) 38\n",
"2.46122886797 Life (1999) 40\n",
"2.46022851849 Road Trip (2000) 37\n",
"2.4598590773 City Hall (1996) 41\n",
"2.45961239669 Juror, The (1996) 40\n",
"2.45881232575 Striking Distance (1993) 49\n",
"2.45804742026 Waiting to Exhale (1995) 43\n",
"2.45789713549 Adventures of Rocky and Bullwinkle, The (2000) 41\n",
"2.45752206149 Very Bad Things (1998) 36\n",
"2.45750903071 Return to Oz (1985) 33\n",
"2.45730984803 Saturn 3 (1979) 43\n",
"2.456872719 Mrs. Parker and the Vicious Circle (1994) 44\n",
"2.45676294314 Fletch Lives (1989) 43\n",
"2.45672984781 Dudley Do-Right (1999) 41\n",
"2.45668510022 Son in Law (1993) 39\n",
"2.45644720511 Two Girls and a Guy (1997) 36\n",
"2.45621170903 End of Days (1999) 42\n",
"2.45618181398 Repossessed (1990) 38\n",
"2.45491366659 Shaft (2000) 36\n",
"2.45441765657 Air America (1990) 42\n",
"2.45418987796 Barb Wire (1996) 45\n",
"2.45345020102 Best Man, The (1999) 42\n",
"2.45235115344 Champ, The (1979) 39\n",
"2.45183876098 Peacemaker, The (1997) 35\n",
"2.45139766238 Amityville II: The Possession (1982) 25\n",
"2.45128341392 Blade (1998) 24\n",
"2.45105928143 Pacific Heights (1990) 46\n",
"2.44989978906 Candyman: Farewell to the Flesh (1995) 30\n",
"2.44977576907 Nothing But Trouble (1991) 45\n",
"2.44965166851 Story of Us, The (1999) 45\n",
"2.44901147994 D2: The Mighty Ducks (1994) 42\n",
"2.44875459008 Other Sister, The (1999) 40\n",
"2.44875226674 Lethal Weapon 3 (1992) 36\n",
"2.4479530108 Desperate Measures (1998) 35\n",
"2.44650644773 Metro (1997) 36\n",
"2.44650441428 Snake Eyes (1998) 43\n",
"2.44643871043 Message in a Bottle (1999) 46\n",
"2.44551614225 Psycho II (1983) 36\n",
"2.44538222765 Lifeforce (1985) 37\n",
"2.444877566 Albino Alligator (1996) 43\n",
"2.444690649 Gone in 60 Seconds (2000) 39\n",
"2.44420735955 Coneheads (1993) 40\n",
"2.44360105444 Out-of-Towners, The (1999) 42\n",
"2.44283989613 Boiling Point (1993) 39\n",
"2.44262322362 Halloween: H20 (1998) 34\n",
"2.44255007821 Thirteenth Floor, The (1999) 33\n",
"2.44155567499 Superstar (1999) 35\n",
"2.44044054702 Wayne's World 2 (1993) 38\n",
"2.4401670222 Holy Man (1998) 28\n",
"2.44007381987 Spy Hard (1996) 41\n",
"2.43988781711 Lawnmower Man, The (1992) 43\n",
"2.43856997367 Exorcist II: The Heretic (1977) 42\n",
"2.43832607926 Addicted to Love (1997) 37\n",
"2.43792478609 Program, The (1993) 45\n",
"2.43784807679 Bicentennial Man (1999) 46\n",
"2.43683809931 Money Talks (1997) 37\n",
"2.43627462264 Texas Chainsaw Massacre, The (1974) 27\n",
"2.43614804616 Drowning Mona (2000) 34\n",
"2.43543443804 8 Heads in a Duffel Bag (1997) 43\n",
"2.43532446777 Nightwatch (1997) 43\n",
"2.43485446352 Robin Hood: Men in Tights (1993) 39\n",
"2.434813467 Scrooged (1988) 22\n",
"2.43443498465 Drive Me Crazy (1999) 34\n",
"2.43434718628 Excess Baggage (1997) 44\n",
"2.43401204548 Meatballs III (1987) 35\n",
"2.4334206843 Virus (1999) 40\n",
"2.43303626853 Waterworld (1995) 48\n",
"2.43230622196 Friday the 13th Part 3: 3D (1982) 39\n",
"2.43228367011 Anaconda (1997) 46\n",
"2.4322713577 Maximum Risk (1996) 39\n",
"2.43148978303 Nightmare on Elm Street 4: The Dream Master, A (1988) 38\n",
"2.43146553046 Three Amigos! (1986) 34\n",
"2.43119156318 Gremlins 2: The New Batch (1990) 37\n",
"2.43063737073 Vampires (1998) 39\n",
"2.43048311286 Two if by Sea (1996) 38\n",
"2.42926628829 Shadow, The (1994) 38\n",
"2.42908871173 Pok\u00e9mon: The First Movie (1998) 43\n",
"2.42904260797 Conspiracy Theory (1997) 38\n",
"2.42876459654 Sgt. Bilko (1996) 38\n",
"2.42855856117 Home Alone 3 (1997) 39\n",
"2.42853498544 Aces: Iron Eagle III (1992) 40\n",
"2.42831989986 Death Becomes Her (1992) 44\n",
"2.42823770675 Christine (1983) 38\n",
"2.42784458183 Wrongfully Accused (1998) 40\n",
"2.42667947278 Spaceballs (1987) 33\n",
"2.42627684381 Johnny Mnemonic (1995) 46\n",
"2.42602910306 Demolition Man (1993) 39\n",
"2.42571480353 Last Action Hero (1993) 42\n",
"2.42569078654 Random Hearts (1999) 42\n",
"2.42538274003 Hollywood Knights, The (1980) 35\n",
"2.4249694491 Flubber (1997) 45\n",
"2.42426649978 Man in the Iron Mask, The (1998) 37\n",
"2.42416489021 Teenage Mutant Ninja Turtles (1990) 43\n",
"2.42283920428 Wild Wild West (1999) 45\n",
"2.42148869982 Police Academy 2: Their First Assignment (1985) 38\n",
"2.42105616094 Mafia! (1998) 38\n",
"2.42020959024 Heartburn (1986) 46\n",
"2.41971340806 House Party (1990) 36\n",
"2.41955655297 Cops and Robbersons (1994) 39\n",
"2.41886151086 Fury, The (1978) 34\n",
"2.41849151073 Free Willy 2: The Adventure Home (1995) 44\n",
"2.41841311838 Pet Sematary (1989) 41\n",
"2.41840392643 Jaws 3-D (1983) 47\n",
"2.41721870854 Striptease (1996) 43\n",
"2.41683454732 Very Brady Sequel, A (1996) 33\n",
"2.41672611354 Quick and the Dead, The (1995) 42\n",
"2.41638687841 Species II (1998) 43\n",
"2.41634811336 Instinct (1999) 35\n",
"2.41575718234 Tales from the Crypt Presents: Bordello of Blood (1996) 35\n",
"2.41445480279 Boxing Helena (1993) 44\n",
"2.41411264163 From the Hip (1987) 38\n",
"2.41338335727 Naked Gun 33 1/3: The Final Insult (1994) 30\n",
"2.41301047708 Airport 1975 (1974) 36\n",
"2.41295476354 Airplane II: The Sequel (1982) 40\n",
"2.41285094824 F/X 2 (1992) 46\n",
"2.41250903439 Assassins (1995) 39\n",
"2.41213009718 Volcano (1997) 44\n",
"2.41151138763 Mary Shelley's Frankenstein (1994) 37\n",
"2.41108961308 Summer of Sam (1999) 29\n",
"2.40893402462 White Man's Burden (1995) 36\n",
"2.40827628439 Naked Gun 2 1/2: The Smell of Fear, The (1991) 30\n",
"2.40801765903 She-Devil (1989) 44\n",
"2.40742215973 Vampire in Brooklyn (1995) 41\n",
"2.40721177846 Under Siege 2: Dark Territory (1995) 42\n",
"2.40672853255 Afterglow (1997) 38\n",
"2.40597038059 Richie Rich (1994) 42\n",
"2.40593816288 Arlington Road (1999) 27\n",
"2.40587527416 Robocop 2 (1990) 46\n",
"2.40561359077 So I Married an Axe Murderer (1993) 23\n",
"2.40552324642 8 Seconds (1994) 40\n",
"2.40527297394 Halloween 4: The Return of Michael Myers (1988) 46\n",
"2.40474536674 Lethal Weapon 4 (1998) 39\n",
"2.40466741469 Gods Must Be Crazy II, The (1989) 32\n",
"2.4044443417 Stigmata (1999) 40\n",
"2.40371742393 Puppet Master (1989) 41\n",
"2.40302294028 Speechless (1994) 41\n",
"2.40263232185 Meteor (1979) 42\n",
"2.40220611609 Willow (1988) 29\n",
"2.40210827256 Newton Boys, The (1998) 42\n",
"2.40117927489 Robert A. Heinlein's The Puppet Masters (1994) 37\n",
"2.40114192863 Needful Things (1993) 39\n",
"2.40089165814 Dirty Work (1998) 33\n",
"2.40028486167 Kazaam (1996) 40\n",
"2.40027487022 Death Wish 3 (1985) 34\n",
"2.39966116347 Home Fries (1998) 38\n",
"2.39877886183 Return of Jafar, The (1993) 40\n",
"2.39795817519 North (1994) 34\n",
"2.39789814055 Carrington (1995) 42\n",
"2.39787142258 Graveyard Shift (1990) 40\n",
"2.39756955693 Fathers' Day (1997) 38\n",
"2.3975274132 Hocus Pocus (1993) 44\n",
"2.39694271056 Bride of Chucky (1998) 33\n",
"2.39524215501 Nightmare on Elm Street 5: The Dream Child, A (1989) 35\n",
"2.39454290013 Haunting, The (1999) 44\n",
"2.39381547647 Spawn (1997) 44\n",
"2.39300467781 Alligator (1980) 43\n",
"2.39283549257 Allan Quartermain and the Lost City of Gold (1987) 39\n",
"2.39253529736 Porky's Revenge (1985) 36\n",
"2.39204506146 Fright Night Part II (1989) 34\n",
"2.39191609704 Boy Who Could Fly, The (1986) 31\n",
"2.39161193024 Child's Play 3 (1992) 37\n",
"2.39041509584 My Giant (1998) 35\n",
"2.39002002782 Money Train (1995) 42\n",
"2.38927976715 In Dreams (1999) 41\n",
"2.38893614894 Bonfire of the Vanities (1990) 35\n",
"2.3879990074 Hellraiser: Bloodline (1996) 36\n",
"2.38484284625 Hanging Up (2000) 46\n",
"2.38374334712 Jawbreaker (1999) 43\n",
"2.38351198488 Dracula: Dead and Loving It (1995) 44\n",
"2.38327371555 Saint, The (1997) 44\n",
"2.38318061947 Sliver (1993) 45\n",
"2.38307679273 Cable Guy, The (1996) 35\n",
"2.38298158714 Supergirl (1984) 39\n",
"2.38185755643 Waterboy, The (1998) 39\n",
"2.38177384372 Beautician and the Beast, The (1997) 38\n",
"2.38144059448 Ghost and the Darkness, The (1996) 38\n",
"2.38087056077 Nightmare on Elm Street 3: Dream Warriors, A (1987) 37\n",
"2.37965652791 Fair Game (1995) 42\n",
"2.37829881609 What Dreams May Come (1998) 39\n",
"2.37821928528 Forces of Nature (1999) 42\n",
"2.37721239657 Sudden Death (1995) 40\n",
"2.37684743019 Andre (1994) 35\n",
"2.37673154998 Bean (1997) 41\n",
"2.37671741977 Terminal Velocity (1994) 41\n",
"2.3766350309 Police Academy 4: Citizens on Patrol (1987) 40\n",
"2.3765788009 Playing God (1997) 47\n",
"2.37656649844 Multiplicity (1996) 38\n",
"2.37459479357 Eye of the Beholder (1999) 37\n",
"2.37077557127 Puppet Master 5: The Final Chapter (1994) 44\n",
"2.37057146502 Krippendorf's Tribe (1998) 44\n",
"2.36998624387 Sphere (1998) 44\n",
"2.3699661857 Puppet Master 4 (1993) 46\n",
"2.36980981415 D3: The Mighty Ducks (1996) 41\n",
"2.36973137351 McHale's Navy (1997) 44\n",
"2.36932677285 Mr. Wrong (1996) 32\n",
"2.36901397355 Getaway, The (1994) 38\n",
"2.36821900075 Supernova (2000) 44\n",
"2.36740360524 8MM (1999) 38\n",
"2.36723372188 King Kong (1976) 46\n",
"2.3663936304 Wishmaster (1997) 36\n",
"2.36614354984 Blank Check (1994) 36\n",
"2.36536003702 Highlander III: The Sorcerer (1994) 39\n",
"2.36496176391 Children of the Corn II: The Final Sacrifice (1993) 36\n",
"2.36492167293 Nine Months (1995) 43\n",
"2.36473984446 I Still Know What You Did Last Summer (1998) 44\n",
"2.36457029214 Astronaut's Wife, The (1999) 43\n",
"2.36331932706 Jackal, The (1997) 43\n",
"2.36264882971 Puppet Master III: Toulon's Revenge (1991) 40\n",
"2.36255266341 I Love Trouble (1994) 40\n",
"2.36205611633 Black Sheep (1996) 43\n",
"2.3612221653 Halloween 5: The Revenge of Michael Myers (1989) 33\n",
"2.36038350502 Next Karate Kid, The (1994) 39\n",
"2.3601848759 Operation Dumbo Drop (1995) 42\n",
"2.35917735996 Small Soldiers (1998) 38\n",
"2.35824127283 Carnosaur (1993) 38\n",
"2.35742418274 In Love and War (1996) 41\n",
"2.35727705022 Problem Child 2 (1991) 36\n",
"2.35703700675 Police Academy (1984) 27\n",
"2.3570050255 Fly II, The (1989) 39\n",
"2.3559032576 Damien: Omen II (1978) 37\n",
"2.35334865087 Major Payne (1994) 40\n",
"2.35301285201 Serial Mom (1994) 30\n",
"2.35146610987 Ready to Wear (Pret-A-Porter) (1994) 43\n",
"2.35131250653 Runaway (1984) 42\n",
"2.3511774101 My Favorite Martian (1999) 38\n",
"2.35115959618 Tron (1982) 25\n",
"2.35075277374 Event Horizon (1997) 38\n",
"2.35006576071 200 Cigarettes (1999) 46\n",
"2.34915804358 Autumn in New York (2000) 42\n",
"2.3490544665 Friday the 13th Part V: A New Beginning (1985) 32\n",
"2.34629100819 Malice (1993) 28\n",
"2.34511079162 Police Academy 5: Assignment: Miami Beach (1988) 33\n",
"2.34421646644 Dunston Checks In (1996) 38\n",
"2.3439982989 Teaching Mrs. Tingle (1999) 39\n",
"2.34363144489 Friday the 13th Part VI: Jason Lives (1986) 35\n",
"2.34242960457 Friday the 13th Part VII: The New Blood (1988) 35\n",
"2.34166998043 Four Rooms (1995) 28\n",
"2.34141854754 Bachelor, The (1999) 42\n",
"2.33929914508 Fear and Loathing in Las Vegas (1998) 21\n",
"2.33909601142 Medicine Man (1992) 45\n",
"2.33816509391 Pushing Tin (1999) 40\n",
"2.33585170241 Homeward Bound II: Lost in San Francisco (1996) 29\n",
"2.33384863187 Watcher, The (2000) 40\n",
"2.33350101282 Life Less Ordinary, A (1997) 42\n",
"2.33265489372 House on Haunted Hill, The (1999) 36\n",
"2.33190288008 Specialist, The (1994) 36\n",
"2.33185755303 Highlander: Endgame (2000) 37\n",
"2.3312479581 Freddy's Dead: The Final Nightmare (1991) 43\n",
"2.33067346418 Feeling Minnesota (1996) 39\n",
"2.32954401811 Stay Tuned (1992) 37\n",
"2.32915187995 Porky's II: The Next Day (1983) 34\n",
"2.32805628426 Stop! Or My Mom Will Shoot (1992) 39\n",
"2.32585277304 Friday the 13th: The Final Chapter (1984) 31\n",
"2.32561945319 First Kid (1996) 39\n",
"2.32556998966 Psycho III (1986) 36\n",
"2.32541004708 Outside Providence (1999) 23\n",
"2.32469043446 Rage: Carrie 2, The (1999) 29\n",
"2.32419201958 Exorcist III, The (1990) 38\n",
"2.32340572912 Deuce Bigalow: Male Gigolo (1999) 29\n",
"2.32274470137 What About Bob? (1991) 21\n",
"2.32218844871 Teenage Mutant Ninja Turtles II: The Secret of the Ooze (1991) 40\n",
"2.3212684613 Rocky III (1982) 39\n",
"2.31949855141 Police Academy 3: Back in Training (1986) 38\n",
"2.31593598169 Picture Perfect (1997) 39\n",
"2.31318282888 Stupids, The (1996) 28\n",
"2.31260141 Avengers, The (1998) 45\n",
"2.31100226554 Turbulence (1997) 31\n",
"2.31062133528 Mod Squad, The (1999) 40\n",
"2.30990573913 Me, Myself and Irene (2000) 30\n",
"2.30661187291 To Gillian on Her 37th Birthday (1996) 39\n",
"2.30587504792 Big Daddy (1999) 36\n",
"2.30524144974 Return of the Texas Chainsaw Massacre, The (1994) 34\n",
"2.30400148343 Teenage Mutant Ninja Turtles III (1993) 41\n",
"2.30250826649 Hello Mary Lou: Prom Night II (1987) 32\n",
"2.29943539484 Jury Duty (1995) 36\n",
"2.29524054779 Friday the 13th Part VIII: Jason Takes Manhattan (1989) 36\n",
"2.29356794228 Robocop 3 (1993) 38\n",
"2.2921759677 Police Academy 6: City Under Siege (1989) 36\n",
"2.29197043136 Lord of Illusions (1995) 42\n",
"2.28795109825 She's So Lovely (1997) 37\n",
"2.2862836406 Prom Night (1980) 41\n",
"2.28489019204 Mortal Kombat (1995) 40\n",
"2.2833899033 Billy Madison (1995) 34\n",
"2.28296339049 House of the Spirits, The (1993) 43\n",
"2.2828143929 Halloween: The Curse of Michael Myers (1995) 35\n",
"2.28231234684 Mr. Magoo (1997) 32\n",
"2.27844426884 Pet Sematary II (1992) 39\n",
"2.27653547882 Canadian Bacon (1994) 37\n",
"2.27228592951 Mars Attacks! (1996) 36\n",
"2.26248173719 'Til There Was You (1997) 41\n",
"2.26076110331 Baby Geniuses (1999) 41\n",
"2.26071007912 Bloodsport (1988) 28\n",
"2.25425384454 Kiss of Death (1995) 41\n",
"2.25393196732 2010 (1984) 28\n",
"2.252520365 Scary Movie (2000) 28\n",
"2.24720887464 In the Army Now (1994) 38\n",
"2.24649763235 Lawnmower Man 2: Beyond Cyberspace (1996) 36\n",
"2.24626971896 Psycho (1998) 40\n",
"2.24535743394 King Kong Lives (1986) 36\n",
"2.24093123271 Simply Irresistible (1999) 42\n",
"2.24027140634 Poltergeist III (1988) 37\n",
"2.2253985785 Final Conflict, The (a.k.a. Omen III: The Final Conflict) (1981) 30\n",
"2.21423253826 Glen or Glenda (1953) 33\n",
"2.20987477772 Muse, The (1999) 35\n",
"2.2067884392 Starship Troopers (1997) 30\n",
"2.20423525978 Night at the Roxbury, A (1998) 29\n",
"2.16978295389 Chill Factor (1999) 35\n",
"2.13378988397 NeverEnding Story III, The (1994) 35\n"
]
}
],
"prompt_number": 380
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"ratPred = []\n",
"len(otherRatings.title)\n",
"i = 0 \n",
"for title, rating in zip(otherRatings.title,otherRatings.rating):\n",
" for score, item in rankings:\n",
" if item == title:\n",
" i += 1 \n",
" print score, rating, title, i\n",
" ratPred += [[rating,score]]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"3.36770132116 4 Manhattan (1979) 1\n",
"3.54162658477 3 Graduate, The (1967) 2\n",
"3.49738378617 4 Groundhog Day (1993) 3\n",
"3.6099145746 3 Arsenic and Old Lace (1944) 4\n",
"3.61999604242 5 Back to the Future (1985) 5\n",
"3.51850864819 3 Young Frankenstein (1974) 6\n",
"2.4903380994 2 Night on Earth (1991) 7\n",
"3.3155666271 4 Somewhere in Time (1980) 8\n",
"3.42649713699 2 Being There (1979) 9\n",
"3.40821236749 1 Room with a View, A (1986) 10\n",
"3.56966713945 3 Butch Cassidy and the Sundance Kid (1969) 11\n",
"3.59673580246 3 When Harry Met Sally... (1989) 12\n",
"2.68933234024 3 Mirror Has Two Faces, The (1996) 13\n",
"3.43560730851 3 Grease (1978) 14\n",
"2.89604946351 3 My Fellow Americans (1996) 15\n",
"2.35742418274 2 In Love and War (1996) 16\n",
"2.57256136758 3 Michael (1996) 17\n",
"3.25802061732 2 Mother (1996) 18\n",
"3.10784415036 3 Benny & Joon (1993) 19\n",
"2.38177384372 2 Beautician and the Beast, The (1997) 20\n",
"2.479499757 2 Liar Liar (1997) 21\n",
"3.36253992099 1 Grosse Pointe Blank (1997) 22\n",
"3.60125481441 3 Shall We Dance? (Shall We Dansu?) (1996) 23\n",
"2.43832607926 3 Addicted to Love (1997) 24\n",
"2.95263999149 3 Hercules (1997) 25\n",
"3.59823048436 4 Men in Black (1997) 26\n",
"2.31593598169 1 Picture Perfect (1997) 27\n",
"2.28795109825 1 She's So Lovely (1997) 28\n",
"3.30286991745 3 Chasing Amy (1997) 29\n",
"3.59175550909 3 Full Monty, The (1997) 30\n",
"3.52341836823 2 Sliding Doors (1998) 31\n",
"3.10952211551 2 Deconstructing Harry (1997) 32\n",
"2.40672853255 3 Afterglow (1997) 33\n",
"3.53631561434 4 As Good As It Gets (1997) 34\n",
"3.02708848481"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" 5 Object of My Affection, The (1998) 35\n",
"2.82355110114 5 City of Angels (1998) 36\n",
"2.8022481555 2 Clockwatchers (1997) 37\n",
"2.5907523302 2 Hope Floats (1998) 38\n",
"2.57986856743 4 Six Days Seven Nights (1998) 39\n",
"2.92930237278 1 Smoke Signals (1998) 40\n",
"3.16416072002 1 There's Something About Mary (1998) 41\n",
"3.39750427956 3 Tom Jones (1963) 42\n",
"3.47763984529 3 Terms of Endearment (1983) 43\n",
"3.75583427069 4 Out of Africa (1985) 44\n",
"3.04539756756 2 Metropolitan (1990) 45\n",
"3.61007871046 3 Breakfast Club, The (1985) 46\n",
"3.05073817137 3 Back to the Future Part II (1989) 47\n",
"2.96134252418 3 Back to the Future Part III (1990) 48\n",
"3.28739108753 3 Absent Minded Professor, The (1961) 49\n",
"3.53394126182 3 Dangerous Liaisons (1988) 50\n",
"2.63716028467 2 Candleshoe (1977) 51\n",
"2.3975274132 1 Hocus Pocus (1993) 52\n",
"2.66903531013 3 Honey, I Shrunk the Kids (1989) 53\n",
"3.256602717 4 Purple Rose of Cairo, The (1985) 54\n",
"3.67066400109 3 Little Mermaid, The (1989) 55\n",
"3.41470565285 4 Splash (1984) 56\n",
"2.8008693846 2 Jerk, The (1979) 57\n",
"2.58703057528 3 Addams Family, The (1991) 58\n",
"3.50933977414 3 Sixteen Candles (1984) 59\n",
"2.6560248298 2 St. Elmo's Fire (1985) 60\n",
"3.20347122393 1 Gods Must Be Crazy, The (1980) 61\n",
"2.8164518436 2 Slums of Beverly Hills, The (1998) 62\n",
"2.65644857979 3 Dance with Me (1998) 63\n",
"3.43665649602 3 Beetlejuice (1988) 64\n",
"2.52883203543 3 Class (1983) 65\n",
"3.39576759973 3 Broadcast News (1987) 66\n",
"3.62083667907 5 Working Girl (1988) 67\n",
"2.60105130563 2 Married to the Mob (1988) 68\n",
"3.51953234591 4 Say Anything... (1989) 69\n",
"2.5253867223 2 Hero (1992) 70\n",
"2.6845758106 3 About Last Night... (1986) 71\n",
"2.67388521083 5 Butcher's Wife, The (1991) 72\n",
"2.37829881609 3 What Dreams May Come (1998) 73\n",
"3.62972132923 3 My Cousin Vinny (1992) 74\n",
"2.52012741862 "
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"2 Practical Magic (1998) 75\n",
"3.55158906464 3 Pleasantville (1998) 76\n",
"2.61676504177 2 Living Out Loud (1998) 77\n",
"2.55603097107 2 Meet Joe Black (1998) 78\n",
"3.6483606395 4 Big Chill, The (1983) 79\n",
"3.52012722481 1 Bug's Life, A (1998) 80\n",
"2.61067663816 3 Celebrity (1998) 81\n",
"2.74882849984 5 Desperately Seeking Susan (1985) 82\n",
"2.62453783857 2 Money Pit, The (1986) 83\n",
"2.39966116347 2 Home Fries (1998) 84\n",
"3.59802888409 3 Shakespeare in Love (1998) 85\n",
"3.63261449959 3 Romancing the Stone (1984) 86\n",
"3.66789984653 4 Cocoon (1985) 87\n",
"2.49270877172 3 Back to School (1986) 88\n",
"2.42020959024 2 Heartburn (1986) 89\n",
"2.87195636265 2 You've Got Mail (1998) 90\n",
"3.52373402859 4 Playing by Heart (1998) 91\n",
"2.81330173925 4 Jumpin' Jack Flash (1986) 92\n",
"2.68860886924 3 Peggy Sue Got Married (1986) 93\n",
"2.57308973706 4 Soul Man (1986) 94\n",
"2.24093123271 1 Simply Irresistible (1999) 95\n",
"2.57504495118 2 20 Dates (1998) 96\n",
"3.1644193242 4 Blast from the Past (1999) 97\n",
"2.37821928528 3 Forces of Nature (1999) 98\n",
"2.54664791568 1 Never Been Kissed (1999) 99\n",
"2.33816509391 2 Pushing Tin (1999) 100\n",
"3.50826627679 3 Election (1999) 101\n",
"3.20318672559 3 Midsummer Night's Dream, A (1999) 102\n",
"2.5121025703 3 Love Letter, The (1999) 103\n",
"2.58078068711 2 Rocky Horror Picture Show, The (1975) 104\n",
"3.64893528836 5 Notting Hill (1999) 105\n",
"2.30587504792 1 Big Daddy (1999) 106\n",
"3.04326448484 1 South Park: Bigger, Longer and Uncut (1999) 107\n",
"3.53067867286 5 Ghostbusters (1984) 108\n",
"2.51400923817 3 Ghostbusters II (1989) 109\n",
"2.53557260174 2 Drop Dead Gorgeous (1999) 110\n",
"2.5189347691 2 Mystery Men (1999) 111\n",
"2.6679659664 3 Runaway Bride (1999) 112\n",
"3.00693143415 3 Crimes of the Heart (1986) 113\n",
"3.72729877725 5 Heaven Can Wait (1978) 114\n",
"3.38718541959 3 Airplane! (1980) 115\n",
"2.33909601142 1 Medicine Man (1992) 116\n",
"2.20987477772 2 Muse, The (1999) 117\n",
"3.49428757492 3 American Beauty (1999) 118\n",
"2.69235191887 2 Barefoot in the Park (1967) 119\n",
"3.87024583871 4 Risky Business (1983) 120\n",
"3.52835840467 3 Ferris Bueller's Day Off (1986) 121\n",
"3.52231025982 4 South Pacific (1958) 122\n",
"2.83625851162 3 Flashdance (1983) 123\n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"2.44965166851 2 Story of Us, The (1999) 124\n",
"3.36695672044 2 Being John Malkovich (1999) 125\n",
"2.34141854754 1 Bachelor, The (1999) 126\n",
"3.419417115 3 Little Big Man (1970) 127\n",
"3.69377524357 5 Dead Again (1991) 128\n",
"2.4712124938 2 Peter's Friends (1992) 129\n",
"3.47269451021 5 Dogma (1999) 130\n",
"3.4635070825 2 Holiday Inn (1942) 131\n",
"3.51343945421 3 Irma la Douce (1963) 132\n",
"2.434813467 3 Scrooged (1988) 133\n",
"3.64264839802 5 Harvey (1950) 134\n",
"3.61457781656 2 Shop Around the Corner, The (1940) 135\n",
"3.01757908033 5 Shampoo (1975) 136\n",
"3.12641578523 1 Fisher King, The (1991) 137\n",
"3.58632040887 4 Toy Story 2 (1999) 138\n",
"3.55812501838 5 Galaxy Quest (1999) 139\n",
"3.61922940903 4 Goodbye Girl, The (1977) 140\n",
"2.48617663274 3 Sister Act 2: Back in the Habit (1993) 141\n",
"2.90716525402 1 Wayne's World (1992) 142\n",
"3.64176643808 3 League of Their Own, A (1992) 143\n",
"2.59530075916 2 Bodyguard, The (1992) 144\n",
"2.42831989986 1 Death Becomes Her (1992) 145\n",
"2.92098997437 4 Far and Away (1992) 146\n",
"2.87723605283 5 Forever Young (1992) 147\n",
"3.65883430545 4 Born Yesterday (1950) 148\n",
"3.67041407768 5 Defending Your Life (1991) 149\n",
"2.49250417045 2 Dying Young (1991) 150\n",
"2.96147929188 2 Good Morning, Vietnam (1987) 151\n",
"3.17795489892 4 Grumpy Old Men (1993) 152\n",
"3.5279218513 4 Guess Who's Coming to Dinner (1967) 153\n",
"3.49482804617 3 Modern Times (1936) 154\n",
"3.58602762088 4 Heart and Souls (1993) 155\n",
"3.61609994458 4 Murphy's Romance (1985) 156\n",
"3.33053701083 3 Network (1976) 157\n",
"3.59401581456 4 Odd Couple, The (1968) 158\n",
"3.66265773975 4 Bell, Book and Candle (1958) 159\n",
"3.31742950476 4 Arthur (1981) 160\n",
"2.61071445041 3 Prince of Tides, The (1991) 161\n",
"2.56354605615 2 28 Days (2000) 162\n",
"3.39279763247 2 Diner (1982) 163\n",
"3.28519842442 3 Mr. Mom (1983) 164\n",
"3.10182350051 4 Pee-wee's Big Adventure (1985) 165\n",
"2.5848782435 3 Honeymoon in Vegas (1992) 166\n",
"3.49145866193 3 Blazing Saddles (1974) 167\n",
"3.40075009512 4 Fabulous Baker Boys, The (1989) 168\n",
"2.67648755865 1 Prizzi's Honor (1985) 169\n",
"3.55225660786 4 Starman (1984) 170\n",
"2.49852782024 2 Bird on a Wire (1990) 171\n",
"3.29075389416 4 Everything You Always Wanted to Know About Sex (1972) 172\n",
"3.4887898267 4 Love and Death (1975) 173\n",
"3.60354225833 4 Tao of Steve, The (2000) 174\n",
"3.11042564489 3 Cat Ballou (1965) 175\n"
]
}
],
"prompt_number": 381
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"ratPred = numpy.transpose(ratPred)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 383
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"pylab.plot(ratPred[0],ratPred[1],\".\")"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "pyout",
"prompt_number": 384,
"text": [
"[<matplotlib.lines.Line2D at 0x1aae71b90>]"
]
}
],
"prompt_number": 384
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"ratPred"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "pyout",
"prompt_number": 375,
"text": [
"array([[ 3. , 4. , 5. , 4. , 2. ,\n",
" 5. , 5. , 3. , 2. , 5. ,\n",
" 3. , 4. , 5. , 4. , 2. ,\n",
" 3. , 5. , 2. , 4. , 4. ,\n",
" 4. , 2. , 4. , 4. , 5. ,\n",
" 3. , 4. , 4. , 3. , 3. ,\n",
" 2. , 4. , 3. , 3. , 2. ,\n",
" 3. , 5. , 3. , 3. , 4. ,\n",
" 3. , 3. , 3. , 1. , 3. ,\n",
" 3. , 4. , 4. , 4. , 4. ,\n",
" 2. , 4. , 3. , 4. , 1. ,\n",
" 4. , 4. , 4. , 2. , 4. ,\n",
" 4. , 1. , 4. , 2. , 5. ,\n",
" 2. , 3. , 2. , 4. , 4. ,\n",
" 2. , 2. , 3. , 3. , 3. ,\n",
" 3. , 3. , 4. , 4. , 3. ,\n",
" 3. , 3. , 2. , 3. , 4. ,\n",
" 3. , 3. , 3. , 2. , 2. ,\n",
" 4. , 4. , 3. , 3. , 5. ,\n",
" 4. , 3. , 2. , 3. , 4. ,\n",
" 3. , 3. , 3. , 4. , 5. ,\n",
" 4. , 5. , 3. , 5. , 2. ,\n",
" 5. , 3. , 4. , 3. , 4. ,\n",
" 4. , 3. , 4. , 3. , 3. ,\n",
" 5. , 3. , 5. , 5. , 4. ,\n",
" 2. , 4. , 3. , 5. , 5. ,\n",
" 4. , 5. , 3. , 5. , 3. ,\n",
" 2. , 4. , 4. , 2. , 3. ,\n",
" 2. , 3. , 5. , 3. , 3. ,\n",
" 2. , 4. , 5. , 3. , 2. ,\n",
" 3. , 4. , 3. , 4. , 1. ,\n",
" 4. , 3. , 3. , 5. , 4. ,\n",
" 3. , 3. , 2. , 5. , 4. ,\n",
" 5. , 4. , 3. , 1. , 2. ,\n",
" 3. , 5. , 2. , 3. , 2. ,\n",
" 5. , 4. , 4. , 4. , 2. ,\n",
" 4. ],\n",
" [ 3.44185375, 3.4830539 , 3.43144698, 3.43306395, 3.36509963,\n",
" 3.45502784, 3.58267979, 3.39198774, 3.34484427, 3.40669683,\n",
" 3.4299916 , 3.43462705, 3.49624161, 3.42978835, 3.38837234,\n",
" 3.43433638, 3.44704569, 3.35457562, 3.40312571, 3.44933303,\n",
" 3.55262905, 3.47993933, 3.43191612, 3.48224325, 3.66753964,\n",
" 3.23032301, 3.59895369, 3.7346398 , 3.4725804 , 3.52244108,\n",
" 3.41990397, 3.49043617, 3.70442903, 3.51429305, 3.43845564,\n",
" 3.3094685 , 3.02764123, 3.37796557, 3.42577052, 3.45652862,\n",
" 3.53076884, 3.53762283, 3.43664177, 3.20611264, 3.24610647,\n",
" 3.44914125, 3.35906217, 3.45018927, 3.19185234, 3.31658088,\n",
" 3.19111391, 3.48919394, 3.44202678, 3.65515021, 2.98184069,\n",
" 3.42839758, 3.48620781, 3.16212805, 3.40643157, 3.11769023,\n",
" 3.36522846, 2.74623727, 3.3996588 , 3.29781409, 3.4959922 ,\n",
" 3.28594042, 3.37764703, 3.36398258, 3.35613602, 3.45403751,\n",
" 3.31277103, 3.51366415, 3.40391854, 3.19067255, 3.46227796,\n",
" 3.12697844, 3.49446896, 3.38188281, 3.44490078, 2.90402095,\n",
" 3.4910251 , 2.87465978, 3.39365776, 3.32760049, 3.3712631 ,\n",
" 3.5028864 , 3.35702967, 3.3298564 , 3.05150388, 2.96896415,\n",
" 3.00530873, 3.42630907, 3.52533518, 3.34095788, 3.67848872,\n",
" 3.28051338, 3.43759308, 2.85093357, 2.75475692, 3.41629264,\n",
" 3.07050719, 3.42262978, 3.53121945, 3.40574735, 3.83599925,\n",
" 3.62575527, 3.80175271, 2.9681084 , 3.4399842 , 3.10441438,\n",
" 3.27136762, 3.06313477, 3.39870674, 3.41976295, 3.53862973,\n",
" 3.49097029, 2.99519957, 3.43964742, 3.34345926, 3.47902931,\n",
" 3.13892038, 3.25715992, 3.62671883, 3.48511615, 3.5314172 ,\n",
" 3.22952704, 3.48356255, 3.38347635, 3.64425649, 3.41558 ,\n",
" 3.49417498, 3.89298853, 3.44594466, 3.56636199, 3.13422855,\n",
" 3.39329965, 3.43403721, 3.34824375, 3.56099285, 3.57875156,\n",
" 3.50342119, 3.52682902, 3.53602116, 3.31302685, 3.44305705,\n",
" 3.22592803, 3.46154566, 3.4719041 , 3.46535903, 2.93377847,\n",
" 3.02868224, 3.51690867, 3.38449556, 3.61450378, 3.21320161,\n",
" 3.61995656, 3.39911191, 3.21786164, 3.56435114, 3.57447291,\n",
" 3.27669991, 3.75812539, 3.2314394 , 3.22546765, 3.15304128,\n",
" 3.48833973, 3.50993275, 3.1757986 , 3.26431797, 3.56408335,\n",
" 3.07652162, 3.74394507, 3.34842909, 3.49234869, 3.25425657,\n",
" 3.55341212, 3.33613933, 3.68413246, 3.11700359, 3.15035462,\n",
" 3.56759187]])"
]
}
],
"prompt_number": 375
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment