Dodanie modelu regresji liniowej z kerasa, requirements, zapis modelu

This commit is contained in:
Wojciech Jarmosz 2021-04-25 21:54:59 +02:00
parent 496a723846
commit 176b7b693a
12 changed files with 20472 additions and 3 deletions

1
Jenkinsfile vendored
View File

@ -10,6 +10,7 @@ stages {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}", "CUTOFF=${params.CUTOFF}" ]) {
sh 'python3 linear_regression.py'
sh 'python3 script.py'
// Uruchomienie skryptu
sh "chmod 777 ./data_download.sh"

File diff suppressed because it is too large Load Diff

51
linear_regression.py Normal file
View File

@ -0,0 +1,51 @@
import pandas as pd
import numpy as np
import tensorflow as tf
import os.path
from tensorflow import keras
from tensorflow.keras import layers
from tensorflow.keras.layers.experimental import preprocessing
pd.set_option("display.max_columns", None)
# Wczytanie danych
train_data = pd.read_csv("./train.csv")
test_data = pd.read_csv("./test.csv")
# Stworzenie modelu
columns_to_use = ['Year', 'Runtime', 'Netflix']
train_X = tf.convert_to_tensor(train_data[columns_to_use])
train_Y = tf.convert_to_tensor(train_data[["IMDb"]])
test_X = tf.convert_to_tensor(test_data[columns_to_use])
test_Y = tf.convert_to_tensor(test_data[["IMDb"]])
normalizer = preprocessing.Normalization(input_shape=[3,])
normalizer.adapt(train_X)
if os.path.isfile('linear_regression.h5'):
model = keras.models.load_model('linear_regression')
else:
model = keras.Sequential([
keras.Input(shape=(len(columns_to_use),)),
normalizer,
layers.Dense(30, activation='relu'),
layers.Dense(10, activation='relu'),
layers.Dense(25, activation='relu'),
layers.Dense(1)
])
model.compile(loss='mean_absolute_error',
optimizer=tf.keras.optimizers.Adam(0.001))
model.fit(train_X, train_Y, verbose=0, epochs=100)
model.save('linear_regression')
# Predykcja na danych testowych
results = model.predict(test_X)
# Zapis danych do pliku
with open("results.txt", 'w') as file:
for result in results:
file.writelines(str(result[0]) + "\n")

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

View File

@ -1,19 +1,48 @@
absl-py==0.12.0
astunparse==1.6.3
cachetools==4.2.1
certifi==2020.12.5
chardet==4.0.0
flatbuffers==1.12
gast==0.4.0
google-auth==1.29.0
google-auth-oauthlib==0.4.4
google-pasta==0.2.0
grpcio==1.34.1
h5py==3.1.0
idna==2.10
joblib==1.0.1
kaggle==1.5.12
numpy==1.20.1
pandas==1.2.3
keras-nightly==2.5.0.dev2021032900
Keras-Preprocessing==1.1.2
Markdown==3.3.4
numpy==1.19.5
oauthlib==3.1.0
opt-einsum==3.3.0
pandas==1.2.4
protobuf==3.15.8
pyasn1==0.4.8
pyasn1-modules==0.2.8
python-dateutil==2.8.1
python-slugify==4.0.1
pytz==2021.1
requests==2.25.1
requests-oauthlib==1.3.0
rsa==4.7.2
scikit-learn==0.24.1
scipy==1.6.1
six==1.15.0
sklearn==0.0
tensorboard==2.5.0
tensorboard-data-server==0.6.0
tensorboard-plugin-wit==1.8.0
tensorflow==2.5.0rc1
tensorflow-estimator==2.5.0rc0
termcolor==1.1.0
text-unidecode==1.3
threadpoolctl==2.1.0
tqdm==4.59.0
typing-extensions==3.7.4.3
urllib3==1.26.4
Werkzeug==1.0.1
wrapt==1.12.1

331
results.txt Normal file
View File

@ -0,0 +1,331 @@
0.5936598
0.5849244
0.76666903
0.67934513
0.64723533
0.70146203
0.6212848
0.69352806
0.71430266
0.6349592
0.6037227
0.62602526
0.716088
0.6527825
0.61927134
0.6208715
0.5705818
0.5874928
0.6404664
0.58791584
0.67543894
0.62167656
0.6206067
0.64806134
0.5552458
0.75341594
0.6072247
0.6813532
0.58791584
0.60726017
0.6250376
0.62341076
0.5916721
0.73439735
0.70303845
0.6799106
0.6091962
0.61927134
0.8370657
0.61847275
0.62586755
0.68109375
0.5506313
0.54138035
0.59432256
0.5910602
0.5725273
0.61110884
0.6139354
0.698549
0.6325473
0.6033801
0.63960016
0.6930497
0.6141507
0.690398
0.6700437
0.54408246
0.54744244
0.67295927
0.5979732
0.67771566
0.6260898
0.6237586
0.6182915
0.5431411
0.6237045
0.56352425
0.5980723
0.7263526
0.61543685
0.6306595
0.6136954
0.6077196
0.54555225
0.6265953
0.6129655
0.6964393
0.5952996
0.76597196
0.612132
0.7141346
0.61887026
0.62167656
0.78501934
0.5870993
0.622163
0.7269425
0.6047483
0.738512
0.62428063
0.5981832
0.6053737
0.57737106
0.6236219
0.66317254
0.57937706
0.7312876
0.6494799
0.63968897
0.5651109
0.6759594
0.5775144
0.5936598
0.63960016
0.58682525
0.71019185
0.56100094
0.67674595
0.6096024
0.69002897
0.6200595
0.57937706
0.7399035
0.6408503
0.6944639
0.61505663
0.65129274
0.62243
0.60202354
0.58697325
0.6366977
0.6581801
0.5887744
0.64327353
0.5775144
0.600708
0.7870045
0.66495174
0.73288137
0.6411598
0.5922716
0.82116383
0.6830768
0.5775144
0.5493086
0.60465336
0.71464497
0.63086146
0.8296491
0.6182472
0.5995659
0.6235519
0.55489665
0.6356955
0.57629323
0.6342664
0.64431417
0.60523593
0.65745866
0.684063
0.7090692
0.551341
0.6960265
0.6134735
0.6319828
0.69399494
0.6586382
0.6184454
0.579377
0.5624325
0.6291094
0.5526188
0.6200053
0.67691404
0.64806134
0.71236795
0.5982099
0.7223163
0.70254266
0.5769756
0.6886634
0.5427406
0.6079933
0.69164056
0.7077326
0.719109
0.66267097
0.579265
0.69516224
0.5506313
0.61759067
0.62851924
0.5809279
0.7018177
0.7282298
0.6892376
0.72701484
0.5552458
0.62603444
0.6191902
0.64947087
0.5757011
0.61934066
0.6420203
0.68608767
0.6914434
0.5648086
0.5936598
0.62404615
0.58697325
0.68826014
0.5743765
0.62311804
0.5673747
0.6645754
0.6006698
0.6139312
0.605672
0.61527056
0.61543274
0.6497899
0.6445152
0.6175213
0.613054
0.63025105
0.66208804
0.56561863
0.60712475
0.5769756
0.6977379
0.7078162
0.6081246
0.6097158
0.6237586
0.5988606
0.6206067
0.6527825
0.66423184
0.6055651
0.6602301
0.68199044
0.5838982
0.6191426
0.5835939
0.5699177
0.59172297
0.61360157
0.5893885
0.6019349
0.6636439
0.6308284
0.61177546
0.60210186
0.6817741
0.78398675
0.6113895
0.6719309
0.600708
0.7056101
0.6404664
0.57761484
0.5705818
0.64431417
0.6320444
0.7149821
0.66350126
0.6117868
0.6053978
0.65883034
0.6160903
0.62467444
0.6141507
0.56460583
0.6075608
0.71549106
0.59031665
0.5947179
0.5578261
0.68199044
0.6732133
0.58061934
0.75385326
0.63099474
0.55258214
0.6357683
0.6386257
0.6683411
0.617758
0.8129497
0.6143774
0.61251193
0.67745715
0.6147938
0.7365375
0.6236495
0.6806918
0.6894972
0.6269105
0.6205633
0.66388756
0.6088129
0.6154119
0.62330747
0.62925434
0.6778992
0.5844303
0.6399225
0.6335639
0.66535574
0.54796815
0.6119701
0.61533546
0.72435665
0.69239396
0.70170265
0.6722494
0.69742507
0.6009209
0.615307
0.6636749
0.5761081
0.6136954
0.57523835
0.6359734
0.60489464
0.6540913
0.7366513
0.58649015
0.6129386
0.5581885
0.6212848
0.5769756
0.61741394
0.57121605
0.6268614
0.6249659
0.6359734
0.660387
0.7373885
0.7026211

332
test.csv Normal file
View File

@ -0,0 +1,332 @@
Unnamed: 0,ID,Title,Year,Age,IMDb,Rotten Tomatoes,Netflix,Hulu,Prime Video,Disney+,Type,Directors,Genres,Country,Language,Runtime
4039,4040,the pink panther 2,2009,7+,0.5405405405405403,13%,0,1,1,0,0,harald zwart,"action,adventure,comedy,crime,family,mystery",united states,"english,french,italian,spanish",0.3253012048192771
666,667,the little hours,2017,18+,0.5675675675675674,78%,1,0,0,0,0,jeff baena,"comedy,romance",canada,english,0.31726907630522083
9,10,inglourious basterds,2009,18+,0.9054054054054053,89%,1,0,0,0,0,quentin tarantino,"adventure,drama,war","germany,united states","english,french,german,italian",0.570281124497992
812,813,maps to the stars,2014,18+,0.6216216216216215,61%,1,0,0,0,0,david cronenberg,"comedy,drama","canada,france,germany,united states",english,0.4016064257028112
16437,16438,herbie rides again,1974,all,0.554054054054054,80%,0,0,0,1,0,robert stevenson,"comedy,family,fantasy,romance",united states,english,0.3092369477911646
16464,16465,jack,1996,13+,0.5675675675675674,18%,0,0,0,1,0,"albert hughes,allen hughes","horror,mystery,thriller",united states,english,0.4457831325301204
16633,16634,the country bears,2002,all,0.3378378378378377,29%,0,0,0,1,0,peter hastings,"comedy,family,music,musical",united states,english,0.3092369477911646
6083,6084,switchback,1997,18+,0.6486486486486486,32%,0,0,1,0,0,jeb stuart,"crime,mystery,thriller",united states,english,0.429718875502008
3576,3577,the graduate,1967,7+,0.8648648648648647,86%,0,1,0,0,0,mike nichols,"comedy,drama,romance",united states,english,0.38152610441767065
884,885,hannibal buress: comedy camisado,2016,18+,0.6756756756756754,100%,1,0,0,0,0,lance bangs,comedy,united states,english,0.2891566265060241
7031,7032,the freebie,2010,18+,0.4729729729729728,57%,0,0,1,0,0,katie aselton,"comedy,drama",united states,english,0.2690763052208835
8572,8573,noelle,2007,7+,0.581081081081081,57%,0,0,1,1,0,marc lawrence,"comedy,family,fantasy",united states,english,0.35742971887550196
4579,4580,the last black man in san francisco,2019,18+,0.7702702702702701,93%,0,0,1,0,0,joe talbot,drama,united states,english,0.4417670682730923
1219,1220,shepherds and butchers,2017,18+,0.7027027027027025,56%,1,0,0,0,0,oliver schmitz,drama,"germany,south africa,united states","afrikaans,english",0.38152610441767065
4465,4466,the farewell,2019,7+,0.8108108108108105,98%,0,0,1,0,0,lulu wang,"comedy,drama","china,united states","english,italian,japanese,mandarin",0.35742971887550196
5170,5171,book club,2018,13+,0.6081081081081079,55%,0,0,1,0,0,bill holderman,"comedy,drama,romance",united states,"english,hungarian",0.37349397590361444
2483,2484,the open house,2018,18+,0.2162162162162162,23%,1,0,0,0,0,"matt angel,suzanne coote","horror,thriller",united states,english,0.3333333333333333
1376,1377,love wedding repeat,2020,18+,0.5270270270270269,21%,1,0,0,0,0,dean craig,comedy,"italy,united kingdom",english,0.35742971887550196
5653,5654,fugitive pieces,2007,18+,0.7297297297297296,68%,0,0,1,0,0,jeremy podeswa,"drama,war","canada,greece","english,german,greek,yiddish",0.37349397590361444
7018,7019,the little traitor,2009,7+,0.7162162162162161,41%,0,0,1,0,0,lynn roth,drama,"israel,united states","english,hebrew",0.3092369477911646
16265,16266,remember the titans,2000,7+,0.8378378378378377,73%,0,0,0,1,0,boaz yakin,"biography,drama,sport",united states,english,0.40963855421686746
6955,6956,drunks,1997,18+,0.6486486486486486,57%,0,0,1,0,0,peter cohn,drama,united states,english,0.31726907630522083
3744,3745,the commuter,2018,13+,0.635135135135135,56%,0,1,1,0,0,jaume collet-serra,"action,mystery,thriller","china,france,united states","english,spanish",0.37751004016064255
5061,5062,young sherlock holmes,1985,13+,0.7027027027027025,64%,0,0,1,0,0,barry levinson,"adventure,fantasy,mystery,thriller",united states,english,0.393574297188755
3799,3800,villains,2019,18+,0.6216216216216215,84%,0,1,0,0,0,"dan berk,robert olsen","comedy,drama,horror,thriller",united states,english,0.31726907630522083
5118,5119,brimstone,2016,18+,0.7432432432432431,41%,0,0,1,0,0,martin koolhoven,"drama,mystery,thriller,western","belgium,france,germany,netherlands,sweden,united kingdom,united states","dutch,english",0.5502008032128514
4554,4555,arctic,2018,13+,0.7027027027027025,89%,0,0,1,0,0,joe penna,"adventure,drama",iceland,"danish,english",0.34939759036144574
5512,5513,tideland,2005,18+,0.6621621621621621,31%,0,0,1,0,0,terry gilliam,"drama,fantasy,horror","canada,united kingdom",english,0.4377510040160642
10405,10406,mega shark vs. giant octopus,2009,18+,0.12162162162162157,18%,0,0,1,0,0,jack perez,"action,adventure,comedy,horror,sci-fi,thriller",united states,english,0.3092369477911646
5691,5692,almost sunrise,2017,13+,0.8108108108108105,90%,0,0,1,0,0,michael collins,"adventure,documentary,drama,war",united states,english,0.34939759036144574
5192,5193,upside down: the creation records story,2010,18+,0.7567567567567566,100%,0,0,1,0,0,danny o'connor,"documentary,music",united kingdom,english,0.36144578313253006
5828,5829,life,2015,18+,0.6081081081081079,65%,0,0,1,0,0,daniel espinosa,"horror,sci-fi,thriller",united states,"english,japanese,vietnamese",0.37349397590361444
1571,1572,el camino christmas,2017,18+,0.554054054054054,40%,1,0,0,0,0,david e. talbert,"comedy,crime,western",united states,english,0.3132530120481927
3565,3566,batman begins,2005,13+,0.8918918918918917,84%,0,1,0,0,0,christopher nolan,"action,adventure","united kingdom,united states","english,mandarin",0.5180722891566265
5530,5531,once i was a beehive,2015,7+,0.6216216216216215,75%,0,0,1,0,0,maclain nelson,"comedy,drama,family",united states,english,0.4337349397590361
5008,5009,the first great train robbery,1978,7+,0.7162162162162161,73%,0,0,1,0,0,michael crichton,"adventure,crime,drama,thriller",united kingdom,english,0.3975903614457831
814,815,looney tunes: back in action,2003,7+,0.554054054054054,56%,1,0,0,0,0,"eric goldberg,joe dante","adventure,animation,comedy,family,fantasy,sci-fi","germany,united states",english,0.3293172690763052
4511,4512,for sama,2019,7+,0.9324324324324322,99%,0,0,1,0,0,"edward watts,waad al-kateab","documentary,war","syria,united kingdom,united states","arabic,english",0.35742971887550196
4592,4593,reds,1981,7+,0.7702702702702701,90%,0,0,1,0,0,warren beatty,"biography,drama,history,romance",united states,"english,finnish,french,german,italian,russian",0.7389558232931727
15490,15491,fish without a bicycle,2003,18+,0.29729729729729715,10%,0,0,1,0,0,brian austin green,"comedy,drama,romance",united states,english,0.34538152610441764
16253,16254,who framed roger rabbit,1988,7+,0.8243243243243241,97%,0,0,0,1,0,"richard williams,robert zemeckis","adventure,animation,comedy,crime,family,fantasy,mystery",united states,english,0.37349397590361444
10660,10661,julie walking home,2002,18+,0.6486486486486486,43%,0,0,1,0,0,agnieszka holland,"drama,romance","canada,germany,poland,united states","english,polish,russian",0.429718875502008
5972,5973,prescription thugs,2016,13+,0.7297297297297296,69%,0,0,1,0,0,"chris bell,greg young,josh alexander",documentary,united states,english,0.3012048192771084
4060,4061,distorted,2018,18+,0.44594594594594583,18%,0,1,0,0,0,rob w. king,"crime,mystery,thriller",canada,english,0.3012048192771084
5678,5679,the summit,2012,18+,0.7162162162162161,64%,0,0,1,0,0,nick ryan,documentary,"ireland,united kingdom,united states","english,italian",0.3373493975903614
5074,5075,hollywood shuffle,1987,18+,0.7297297297297296,88%,0,0,1,0,0,robert townsend,comedy,united states,english,0.2690763052208835
11420,11421,that's what she said,2012,18+,0.31081081081081074,8%,0,0,1,0,0,carrie preston,comedy,united states,english,0.2931726907630522
5179,5180,dreamchild,1985,7+,0.7027027027027025,100%,0,0,1,0,0,gavin millar,"biography,comedy,drama,fantasy,romance",united kingdom,english,0.3333333333333333
6015,6016,lakeboat,2000,18+,0.6081081081081079,83%,0,0,1,0,0,joe mantegna,drama,"canada,united states",english,0.34939759036144574
4756,4757,phenomena,1985,18+,0.7027027027027025,78%,0,0,1,0,0,dario argento,"horror,mystery","italy,switzerland","danish,italian,swiss german",0.4216867469879518
6597,6598,brick lane,2007,13+,0.6756756756756754,68%,0,0,1,0,0,sarah gavron,drama,"india,united kingdom","bengali,english",0.3654618473895582
1423,1424,lila & eve,2015,18+,0.5675675675675674,40%,1,0,1,0,0,charles stone iii,"crime,drama,mystery,thriller",united states,english,0.3333333333333333
4833,4834,salmon fishing in the yemen,2012,13+,0.7027027027027025,67%,0,0,1,0,0,lasse hallström,"comedy,drama,romance",united kingdom,"arabic,english,mandarin",0.38554216867469876
5796,5797,flying swords of dragon gate,2011,18+,0.5945945945945945,68%,0,0,1,0,0,hark tsui,"action,adventure",china,mandarin,0.4457831325301204
7702,7703,grassroots,2012,18+,0.4999999999999999,50%,0,0,1,0,0,stephen gyllenhaal,"comedy,drama",united states,english,0.34939759036144574
595,596,fire in paradise,2019,18+,0.7837837837837837,80%,1,0,0,0,0,"drea cooper,zackary canepari","documentary,short",united states,english,0.11244979919678713
247,248,what happened to monday,2017,18+,0.7162162162162161,59%,1,0,0,0,0,tommy wirkola,"action,adventure,crime,fantasy,mystery,sci-fi,thriller","belgium,france,united kingdom,united states",english,0.4497991967871486
4109,4110,body at brighton rock,2019,18+,0.4999999999999999,66%,0,1,0,0,0,roxanne benjamin,"horror,mystery,thriller",united states,english,0.3052208835341365
6559,6560,wish upon,2017,13+,0.4594594594594593,19%,0,0,1,0,0,john r. leonetti,"drama,fantasy,horror,mystery,thriller","canada,united states",english,0.31726907630522083
4670,4671,carnival of souls,1962,7+,0.7432432432432431,86%,0,0,1,0,0,herk harvey,"horror,mystery",united states,english,0.2690763052208835
9022,9023,new year's evil,1980,18+,0.43243243243243235,14%,0,0,1,0,0,emmett alston,"horror,thriller",united states,english,0.2971887550200803
6561,6562,the weight of water,2000,18+,0.581081081081081,35%,0,0,1,0,0,kathryn bigelow,"crime,drama,mystery,thriller","canada,france,united states",english,0.41365461847389556
6649,6650,grateful dawg,2000,13+,0.7567567567567566,70%,0,0,1,0,0,gillian grisman,documentary,united states,english,0.28112449799196787
13164,13165,13th child,2002,18+,0.17567567567567563,40%,0,0,1,0,0,"steven stockage,thomas ashley","horror,mystery,thriller",united states,english,0.35341365461847385
5687,5688,northern soul,2014,13+,0.6486486486486486,76%,0,0,1,0,0,elaine constantine,"drama,music",united kingdom,english,0.3654618473895582
6726,6727,slice,2018,18+,0.3918918918918918,57%,0,0,1,0,0,austin vesely,"comedy,crime,fantasy,horror",united states,english,0.2891566265060241
3587,3588,how to train your dragon: the hidden world,2019,7+,0.7972972972972971,91%,0,1,0,0,0,dean deblois,"action,adventure,animation,family,fantasy","japan,united states",english,0.37349397590361444
3913,3914,legion of brothers,2017,16+,0.554054054054054,100%,0,1,0,0,0,greg barker,"documentary,war",united states,english,0.2730923694779116
7177,7178,trudell,2005,7+,0.7567567567567566,33%,0,0,1,0,0,heather rae,documentary,united states,english,0.27710843373493976
4533,4534,the italian job,1969,all,0.7702702702702701,83%,0,0,1,0,0,f. gary gray,"action,crime,thriller","france,germany,italy,united kingdom,united states","english,italian,russian",0.4016064257028112
4706,4707,dead snow 2: red vs. dead,2014,18+,0.7162162162162161,81%,0,0,1,0,0,tommy wirkola,"action,comedy,horror","iceland,norway,united kingdom,united states","english,german,norwegian",0.35742971887550196
16313,16314,james and the giant peach,1996,7+,0.689189189189189,91%,0,0,0,1,0,henry selick,"adventure,animation,family,fantasy,musical","united kingdom,united states",english,0.2730923694779116
8592,8593,between love & goodbye,2009,18+,0.554054054054054,33%,0,0,1,0,0,casper andreas,"drama,music,romance",united states,"english,french",0.34538152610441764
1193,1194,miss virginia,2019,16+,0.6756756756756754,60%,1,0,0,0,0,r.j. daniel hanna,drama,united states,english,0.3654618473895582
3776,3777,the china hustle,2018,18+,0.7567567567567566,77%,0,1,0,0,0,jed rothstein,documentary,united states,english,0.285140562248996
937,938,atlantics,2019,16+,0.689189189189189,95%,1,0,0,0,0,mati diop,"drama,mystery,romance","belgium,france,senegal","arabic,english,french,wolof",0.38152610441767065
4044,4045,american folk,2018,7+,0.6081081081081079,76%,0,1,1,0,0,david heinz,"drama,musical",united states,english,0.35341365461847385
4817,4818,agora,2009,13+,0.7567567567567566,53%,0,0,1,0,0,alejandro amenábar,"adventure,biography,drama,history,romance","bulgaria,malta,spain",english,0.46586345381526095
1544,1545,the assignment,2016,18+,0.40540540540540526,34%,1,0,0,0,0,walter hill,"action,crime,thriller","canada,france,united states",english,0.3373493975903614
5479,5480,ta ra rum pum,2007,all,0.5405405405405403,50%,0,0,1,0,0,siddharth anand,"family,romance,sport","india,united states","english,hindi",0.570281124497992
644,645,13 sins,2014,18+,0.635135135135135,65%,1,0,0,0,0,daniel stamm,"horror,thriller",united states,english,0.3293172690763052
5220,5221,a quiet passion,2016,13+,0.6486486486486486,92%,0,0,1,0,0,terence davies,"biography,drama","belgium,canada,united kingdom,united states",english,0.45783132530120474
2030,2031,blood money,2017,18+,0.3783783783783783,50%,1,0,1,0,0,lucky mckee,"crime,drama,thriller",united states,english,0.35742971887550196
12004,12005,shopping for fangs,1997,18+,0.5675675675675674,50%,0,0,1,0,0,"justin lin,quentin lee",drama,"canada,united states",english,0.31726907630522083
4875,4876,salaam namaste,2005,7+,0.6216216216216215,83%,0,0,1,0,0,siddharth anand,"comedy,drama,romance",india,"english,hindi",0.5903614457831324
6679,6680,so undercover,2012,13+,0.4594594594594593,6%,0,0,1,0,0,tom vaughan,"action,comedy,crime,drama",united states,english,0.3333333333333333
4516,4517,the look of silence,2014,13+,0.9054054054054053,96%,0,0,1,0,0,joshua oppenheimer,"biography,documentary,history","denmark,finland,france,germany,indonesia,israel,netherlands,norway,united kingdom,united states",indonesian,0.36947791164658633
5295,5296,a man called horse,1970,18+,0.7162162162162161,86%,0,0,1,0,0,elliot silverstein,"adventure,drama,western","mexico,united states","english,french,sioux",0.41365461847389556
5009,5010,conversations with other women,2006,18+,0.7297297297297296,74%,0,0,1,0,0,hans canosa,"comedy,drama,romance","united kingdom,united states",english,0.2931726907630522
5937,5938,fat man and little boy,1989,13+,0.6621621621621621,47%,0,0,1,0,0,roland joffé,"biography,drama,history,war","mexico,united states",english,0.46586345381526095
1680,1681,cats & dogs: the revenge of kitty galore,2010,7+,0.3648648648648647,13%,1,0,0,0,0,brad peyton,"action,comedy,family,fantasy","australia,united states",english,0.285140562248996
5736,5737,the horseman,2008,18+,0.6621621621621621,59%,0,0,1,0,0,jonas åkerlund,"crime,drama,mystery,thriller",united states,english,0.31726907630522083
119,120,cloverfield,2008,13+,0.7297297297297296,77%,1,0,0,0,0,matt reeves,"action,adventure,horror,mystery,sci-fi,thriller",united states,"english,russian",0.2971887550200803
3804,3805,the overnight,2015,18+,0.6081081081081079,83%,0,1,1,0,0,patrick brice,"comedy,mystery",united states,"english,french",0.2730923694779116
3809,3810,the quake,2018,13+,0.6216216216216215,84%,0,1,0,0,0,john andreas andersen,"action,drama,thriller",norway,norwegian,0.38152610441767065
6866,6867,strangerland,2015,18+,0.4864864864864864,41%,0,0,1,0,0,kim farrant,"drama,mystery,thriller","australia,ireland",english,0.4056224899598393
399,400,get me roger stone,2017,16+,0.7837837837837837,88%,1,0,0,0,0,"daniel dimauro,dylan bank,morgan pehme","biography,documentary",united states,english,0.3253012048192771
16239,16240,guardians of the galaxy vol. 2,2017,13+,0.8108108108108105,85%,0,0,0,1,0,james gunn,"action,adventure,comedy,sci-fi",united states,english,0.502008032128514
6299,6300,the man from elysian fields,2001,18+,0.6756756756756754,51%,0,0,1,0,0,george hickenlooper,"drama,romance",united states,english,0.38152610441767065
522,523,chappaquiddick,2018,13+,0.6621621621621621,81%,1,0,0,0,0,john curran,"drama,history,thriller","sweden,united states",english,0.38152610441767065
3844,3845,in search of greatness,2018,13+,0.6756756756756754,92%,0,1,0,0,0,gabe polsky,documentary,united states,english,0.2650602409638554
6932,6933,crazy as hell,2002,18+,0.581081081081081,53%,0,0,1,0,0,eriq la salle,"drama,thriller",united states,english,0.40963855421686746
851,852,una,2017,18+,0.6216216216216215,76%,1,0,0,0,0,benedict andrews,"drama,romance","canada,united kingdom,united states",english,0.3333333333333333
5205,5206,the age of stupid,2009,13+,0.7297297297297296,73%,0,0,1,0,0,franny armstrong,"documentary,history,news,war",united kingdom,"english,french",0.3253012048192771
3827,3828,friends with kids,2012,18+,0.6081081081081079,67%,0,1,1,0,0,jennifer westfeldt,"comedy,drama,romance",united states,english,0.38554216867469876
696,697,the monster,2016,18+,0.5135135135135135,81%,1,0,1,0,0,bryan bertino,"drama,fantasy,horror",canada,english,0.321285140562249
382,383,alpha dog,2006,18+,0.7162162162162161,54%,1,0,0,0,0,nick cassavetes,"biography,crime,drama,thriller","germany,united states",english,0.4457831325301204
3855,3856,seymour: an introduction,2015,7+,0.7837837837837837,100%,0,1,0,0,0,ethan hawke,"biography,documentary,music",united states,english,0.2931726907630522
396,397,the sapphires,2012,13+,0.7297297297297296,91%,1,0,0,0,0,wayne blair,"biography,comedy,drama,music,romance",australia,"aboriginal,english",0.36947791164658633
4286,4287,the eternal,1998,18+,0.3783783783783783,33%,0,1,0,0,0,michael almereyda,horror,united states,english,0.3373493975903614
5019,5020,images,1972,18+,0.7432432432432431,69%,0,0,1,0,0,robert altman,"drama,horror,mystery",united kingdom,"english,french",0.37349397590361444
1586,1587,point blank,2019,18+,0.554054054054054,38%,1,0,1,0,0,joe lynch,"action,thriller","france,united states",english,0.3012048192771084
2179,2180,deep,2017,7+,0.3378378378378377,33%,1,0,0,0,0,julio soto gurpide,"adventure,animation,comedy,family","belgium,china,spain,switzerland,united kingdom,united states",english,0.3253012048192771
133,134,barfi!,2012,all,0.8783783783783781,86%,1,0,0,0,0,anurag basu,"comedy,drama,romance",india,hindi,0.5622489959839357
3697,3698,colossal,2016,18+,0.6216216216216215,81%,0,1,0,0,0,nacho vigalondo,"comedy,drama,fantasy,sci-fi,thriller","canada,south korea,spain,united states","english,korean",0.393574297188755
7163,7164,red hook summer,2012,18+,0.44594594594594583,58%,0,0,1,0,0,spike lee,drama,united states,english,0.4417670682730923
5267,5268,every little step,2008,13+,0.7972972972972971,92%,0,0,1,0,0,"adam del deo,james d. stern","documentary,music",united states,english,0.34136546184738953
6628,6629,children shouldn't play with dead things,1973,7+,0.5270270270270269,42%,0,0,1,0,0,bob clark,"comedy,horror",united states,english,0.3052208835341365
4574,4575,hard eight,1996,18+,0.7567567567567566,84%,0,0,1,0,0,paul thomas anderson,"crime,drama",united states,english,0.3654618473895582
16399,16400,cinderella iii: a twist in time,2007,all,0.581081081081081,75%,0,0,0,1,0,frank nissen,"animation,family,fantasy,musical,romance",united states,english,0.25301204819277107
9908,9909,electric slide,2014,18+,0.41891891891891886,14%,0,0,1,0,0,tristan patterson,"action,biography,crime,drama,thriller",united states,english,0.3373493975903614
3786,3787,"where'd you go, bernadette",2019,13+,0.6621621621621621,49%,0,1,0,0,0,richard linklater,"comedy,drama",united states,english,0.393574297188755
3691,3692,get smart,2008,13+,0.6621621621621621,50%,0,1,0,0,0,peter segal,"action,adventure,comedy",united states,"arabic,english,punjabi,russian",0.3975903614457831
1932,1933,the clapper,2018,18+,0.4729729729729728,23%,1,0,0,0,0,dito montiel,"comedy,drama",united states,english,0.3132530120481927
3639,3640,border,2018,18+,0.7297297297297296,97%,0,1,0,0,0,ali abbasi,"crime,drama,fantasy,romance,thriller","denmark,sweden","english,swedish",0.3975903614457831
132,133,"jim & andy: the great beyond- featuring a very special, contractually obligated mention of tony clifton",2017,18+,0.8243243243243241,94%,1,0,0,0,0,chris smith,documentary,"canada,united states","east-greenlandic,english",0.3333333333333333
7089,7090,the baker,2007,13+,0.6486486486486486,14%,0,0,1,0,0,gareth lewis,"comedy,thriller",united kingdom,english,0.3012048192771084
5765,5766,gulliver's travels,1939,all,0.689189189189189,67%,0,0,1,0,0,rob letterman,"adventure,comedy,family,fantasy",united states,english,0.2971887550200803
6312,6313,healing,2014,18+,0.689189189189189,75%,0,0,1,0,0,craig monahan,drama,australia,english,0.4056224899598393
752,753,"michael bolton's big, sexy valentine's day special",2017,18+,0.689189189189189,100%,1,0,0,0,0,"akiva schaffer,scott aukerman","comedy,music,musical,romance",united states,english,0.17269076305220882
1419,1420,silent hill: revelation 3d,2012,18+,0.4594594594594593,10%,1,0,0,0,0,m.j. bassett,horror,"canada,france,japan",english,0.3373493975903614
4819,4820,café society,2016,13+,0.6756756756756754,71%,0,0,1,0,0,woody allen,"comedy,drama,romance",united states,"english,hebrew",0.34136546184738953
1250,1251,immoral tales,1973,18+,0.5405405405405403,43%,1,0,0,0,0,walerian borowczyk,"drama,romance",france,"french,hungarian,italian",0.36947791164658633
715,716,horns,2013,18+,0.6621621621621621,41%,1,0,0,0,0,alexandre aja,"comedy,crime,drama,fantasy,mystery,thriller","canada,united states",english,0.4377510040160642
378,379,the ritual,2017,18+,0.635135135135135,71%,1,0,0,0,0,david bruckner,"horror,mystery,thriller","canada,united kingdom","english,swedish",0.3333333333333333
4015,4016,the cleanse,2018,18+,0.4999999999999999,83%,0,1,0,0,0,bobby miller,"comedy,drama,fantasy,horror","canada,united states",english,0.28112449799196787
879,880,earth to echo,2014,7+,0.5675675675675674,51%,1,0,0,0,0,dave green,"adventure,family,sci-fi",united states,english,0.321285140562249
900,901,the core,2003,13+,0.5270270270270269,40%,1,0,1,0,0,jon amiel,"action,adventure,sci-fi,thriller","canada,france,germany,italy,united kingdom,united states",english,0.4979919678714859
4763,4764,danny collins,2015,18+,0.7297297297297296,77%,0,0,1,0,0,dan fogelman,"biography,comedy,drama,music",united states,english,0.38152610441767065
5277,5278,is paris burning?,1966,7+,0.7162162162162161,71%,0,0,1,0,0,rené clément,"drama,history,war","france,united states","english,french,german",0.6586345381526104
3574,3575,50/50,2011,18+,0.8108108108108105,93%,0,1,0,0,0,jonathan levine,"comedy,drama,romance",united states,english,0.35742971887550196
16431,16432,the crimson wing: mystery of the flamingos,2008,all,0.7702702702702701,75%,0,0,0,1,0,"leander ward,matthew aeberhard",documentary,"united kingdom,united states",english,0.2690763052208835
6970,6971,a little trip to heaven,2005,18+,0.5945945945945945,33%,0,0,1,0,0,baltasar kormákur,"drama,thriller","iceland,united states",english,0.34939759036144574
11027,11028,it's so easy and other lies,2016,18+,0.581081081081081,25%,0,0,1,0,0,christopher duddy,documentary,united states,english,0.2931726907630522
385,386,"extremely wicked, shockingly evil and vile",2019,18+,0.6756756756756754,55%,1,0,0,0,0,joe berlinger,"biography,crime,drama,thriller",united states,english,0.3975903614457831
5585,5586,winter brothers,2017,16+,0.6621621621621621,91%,0,0,1,0,0,hlynur palmason,drama,"denmark,iceland","danish,english",0.3333333333333333
6053,6054,art school confidential,2006,18+,0.635135135135135,36%,0,0,1,0,0,terry zwigoff,"comedy,drama,romance",united states,english,0.3654618473895582
6346,6347,henry's crime,2010,18+,0.5945945945945945,41%,0,0,1,0,0,malcolm venville,"comedy,crime,drama,romance",united states,english,0.38955823293172687
6601,6602,the window,2008,18+,0.689189189189189,92%,0,0,1,0,0,ted tetzlaff,"drama,film-noir,thriller",united states,english,0.24899598393574296
5321,5322,short eyes,1977,18+,0.7432432432432431,89%,0,0,1,0,0,robert m. young,drama,united states,english,0.35742971887550196
22,23,dallas buyers club,2013,18+,0.8648648648648647,93%,1,0,0,0,0,jean-marc vallée,"biography,drama",united states,"english,japanese",0.4257028112449799
5832,5833,the souvenir,2019,18+,0.6621621621621621,90%,0,0,1,0,0,joanna hogg,"drama,mystery,romance","united kingdom,united states",english,0.4377510040160642
5433,5434,dark river,2018,18+,0.5675675675675674,79%,0,0,1,0,0,clio barnard,"drama,mystery,thriller",united kingdom,english,0.31726907630522083
8887,8888,queen of the lot,2013,18+,0.4999999999999999,31%,0,0,1,0,0,henry jaglom,"comedy,drama",united states,english,0.4377510040160642
16294,16295,treasure planet,2002,7+,0.7567567567567566,69%,0,0,0,1,0,"john musker,ron clements","adventure,animation,family,sci-fi",united states,english,0.3373493975903614
3826,3827,assassination nation,2018,18+,0.581081081081081,73%,0,1,0,0,0,sam levinson,"action,comedy,crime,drama,horror,thriller",united states,"english,italian",0.38955823293172687
4932,4933,neds,2010,16+,0.7297297297297296,94%,0,0,1,0,0,peter mullan,drama,"france,italy,united kingdom","english,latin,scots",0.4538152610441767
5503,5504,vampire circus,1972,7+,0.6486486486486486,80%,0,0,1,0,0,robert young,horror,united kingdom,english,0.3052208835341365
5654,5655,sister my sister,1994,18+,0.6756756756756754,63%,0,0,1,0,0,nancy meckler,"drama,thriller",united kingdom,english,0.3132530120481927
816,817,a christmas prince,2017,7+,0.554054054054054,73%,1,0,1,0,0,alex zamm,"comedy,family,romance",united states,english,0.3253012048192771
5846,5847,sun choke,2015,18+,0.5405405405405403,88%,0,0,1,0,0,ben cresciman,"drama,horror,mystery,thriller",united states,english,0.2891566265060241
5180,5181,unmistaken child,2009,7+,0.7972972972972971,81%,0,0,1,0,0,nati baratz,documentary,israel,"english,hindi,nepali,tibetan",0.3654618473895582
8596,8597,just getting started,2017,13+,0.3783783783783783,4%,0,0,1,0,0,ron shelton,"comedy,crime",united states,english,0.321285140562249
7630,7631,manufacturing dissent,2007,18+,0.554054054054054,54%,0,0,1,0,0,"debbie melnyk,rick caine",documentary,canada,english,0.34538152610441764
347,348,candyman,1992,18+,0.6756756756756754,74%,1,0,0,0,0,bernard rose,"horror,thriller","united kingdom,united states",english,0.35341365461847385
4774,4775,explorers,1985,7+,0.6756756756756754,77%,0,0,1,0,0,joe dante,"adventure,comedy,family,romance,sci-fi",united states,"english,german",0.393574297188755
4573,4574,beautiful boy,2018,18+,0.7702702702702701,69%,0,0,1,0,0,felix van groeningen,"biography,drama",united states,english,0.4377510040160642
5348,5349,my kid could paint that,2007,13+,0.7432432432432431,94%,0,0,1,0,0,amir bar-lev,"documentary,family,mystery","united kingdom,united states","english,mandarin",0.285140562248996
6239,6240,jennifer eight,1992,18+,0.635135135135135,37%,0,0,1,0,0,bruce robinson,"crime,drama,mystery,thriller","canada,united kingdom,united states",english,0.4538152610441767
641,642,guzaarish,2010,7+,0.7837837837837837,67%,1,0,0,0,0,sanjay leela bhansali,drama,india,"english,hindi",0.4618473895582329
2213,2214,happy family,2017,7+,0.43243243243243235,10%,1,0,0,0,0,holger tappe,"animation,comedy,family,horror","germany,united kingdom","english,german",0.3293172690763052
95,96,saving mr. banks,2013,13+,0.7972972972972971,79%,1,0,0,1,0,john lee hancock,"biography,comedy,drama","australia,united kingdom,united states",english,0.45783132530120474
5839,5840,who's watching oliver,2018,18+,0.4729729729729728,86%,0,0,1,0,0,richie moore,"drama,horror","thailand,united states",english,0.3052208835341365
1560,1561,snow day,2000,7+,0.4729729729729728,29%,1,0,0,0,0,chris koch,"adventure,comedy,family",united states,english,0.3132530120481927
6746,6747,illuminata,1998,18+,0.6081081081081079,40%,0,0,1,0,0,john turturro,"drama,romance","japan,spain,united states",english,0.4337349397590361
3695,3696,sword art online: the movie - ordinal scale,2017,13+,0.7837837837837837,100%,0,1,0,0,0,tomohiko itô,"action,adventure,animation,fantasy,sci-fi",japan,japanese,0.4337349397590361
120,121,burning,2018,18+,0.7972972972972971,95%,1,0,0,0,0,chang-dong lee,"drama,mystery","japan,south korea","english,korean",0.5502008032128514
16402,16403,escape to witch mountain,1975,all,0.6486486486486486,76%,0,0,0,1,0,john hough,"adventure,family,fantasy,mystery,sci-fi",united states,english,0.34538152610441764
5927,5928,a turtle's tale: sammy's adventures,2010,all,0.6081081081081079,44%,0,0,1,0,0,"ben stassen,mimi maynard","adventure,animation,family","belgium,france,united states","danish,english,italian",0.3092369477911646
897,898,little monsters,1989,7+,0.6081081081081079,50%,1,1,0,0,0,abe forsythe,"comedy,horror","australia,united kingdom,united states",english,0.3293172690763052
6547,6548,the vessel,2016,13+,0.4999999999999999,67%,0,0,1,0,0,julio quintana,drama,"puerto rico,united states","english,spanish",0.3012048192771084
7410,7411,the passion of darkly noon,1995,18+,0.581081081081081,17%,0,0,1,0,0,philip ridley,"drama,mystery,thriller","belgium,germany,united kingdom",english,0.35742971887550196
4839,4840,jin-roh: the wolf brigade,1999,18+,0.7837837837837837,55%,0,0,1,0,0,hiroyuki okiura,"animation,drama,fantasy,thriller",japan,japanese,0.3654618473895582
258,259,the perfection,2018,18+,0.6081081081081079,83%,1,0,0,0,0,richard shepard,"drama,horror,thriller",united states,english,0.31726907630522083
4482,4483,logan lucky,2017,13+,0.7297297297297296,92%,0,0,1,0,0,steven soderbergh,"comedy,crime,drama","china,united states",english,0.429718875502008
44,45,indiana jones and the temple of doom,1984,7+,0.8108108108108105,85%,1,0,0,0,0,steven spielberg,"action,adventure",united states,"english,hindi,sinhalese",0.429718875502008
290,291,undefeated,2011,13+,0.8243243243243241,96%,1,0,0,0,0,"daniel lindsay,t.j. martin","documentary,sport",united states,english,0.40963855421686746
1484,1485,mubarakan,2017,13+,0.5405405405405403,43%,1,0,0,0,0,anees bazmee,"comedy,romance",india,hindi,0.5823293172690762
4944,4945,the hole in the ground,2019,18+,0.554054054054054,84%,0,0,1,0,0,lee cronin,"drama,horror,mystery","belgium,finland,ireland,united kingdom",english,0.31726907630522083
7288,7289,child of god,2014,18+,0.5270270270270269,42%,0,0,1,0,0,james franco,"crime,drama,thriller",united states,english,0.37349397590361444
5767,5768,bride of re-animator,1990,18+,0.635135135135135,44%,0,0,1,0,0,brian yuzna,"comedy,horror,sci-fi,thriller",united states,english,0.34136546184738953
181,182,arthur christmas,2011,7+,0.7432432432432431,92%,1,0,0,0,0,"barry cook,sarah smith","adventure,animation,comedy,family,fantasy","united kingdom,united states",english,0.34538152610441764
3956,3957,scenic route,2013,18+,0.6621621621621621,67%,0,1,0,0,0,"kevin goetz,michael goetz","drama,thriller",united states,english,0.285140562248996
4189,4190,silent tongue,1993,13+,0.4999999999999999,38%,0,1,1,0,0,sam shepard,"drama,horror,western","france,netherlands,united kingdom,united states",english,0.3654618473895582
5175,5176,photograph,2019,13+,0.7027027027027025,79%,0,0,1,0,0,ritesh batra,"drama,romance","germany,india,united states","english,gujarati,hindi",0.3975903614457831
1271,1272,bébé's kids,1992,13+,0.5675675675675674,30%,1,0,0,0,0,bruce w. smith,"animation,comedy,fantasy,musical",united states,english,0.23694779116465864
1733,1734,miss julie,2014,13+,0.5135135135135135,51%,1,0,0,0,0,liv ullmann,"drama,romance","france,ireland,norway,united kingdom",english,0.4738955823293173
5065,5066,orchestra rehearsal,1978,18+,0.7567567567567566,88%,0,0,1,0,0,federico fellini,"comedy,drama,music","italy,west germany","german,italian",0.23694779116465864
7658,7659,dead man running,2009,18+,0.5945945945945945,14%,0,0,1,0,0,alex de rakoff,"action,crime,drama,thriller",united kingdom,english,0.3253012048192771
3971,3972,run the race,2019,7+,0.581081081081081,40%,0,1,1,0,0,chris dowling,"drama,sport",united states,english,0.36144578313253006
5636,5637,the keeping room,2014,18+,0.5945945945945945,75%,0,0,1,0,0,daniel barber,"drama,western",united states,english,0.3373493975903614
1206,1207,country strong,2010,13+,0.635135135135135,22%,1,0,0,0,0,shana feste,"drama,music",united states,english,0.4257028112449799
5912,5913,humanoids from the deep,1980,18+,0.554054054054054,56%,0,0,1,0,0,"barbara peeters,jimmy t. murakami","horror,sci-fi",united states,english,0.27710843373493976
6656,6657,bio-dome,1996,13+,0.3918918918918918,4%,0,0,1,0,0,jason bloom,comedy,united states,english,0.3092369477911646
7246,7247,dorfman in love,2013,13+,0.5945945945945945,21%,0,0,1,0,0,brad leong,"comedy,drama,romance",united states,english,0.3253012048192771
741,742,joshua: teenager vs. superpower,2017,16+,0.7297297297297296,93%,1,0,0,0,0,joe piscatella,documentary,united states,"cantonese,english",0.2730923694779116
6029,6030,coming through the rye,2016,13+,0.635135135135135,70%,0,0,1,0,0,james steven sadwith,drama,united states,english,0.34538152610441764
16377,16378,tuck everlasting,2002,7+,0.6756756756756754,60%,0,0,0,1,0,jay russell,"drama,family,fantasy,romance",united states,"english,french",0.31726907630522083
432,433,spitfire,2018,7+,0.7972972972972971,94%,1,0,0,0,0,john cromwell,drama,united states,english,0.3052208835341365
4513,4514,bridget jones's diary,2001,18+,0.689189189189189,80%,0,0,1,0,0,sharon maguire,"comedy,drama,romance","france,united kingdom,united states",english,0.34538152610441764
5666,5667,body bags,1993,18+,0.6081081081081079,67%,0,0,1,0,0,"john carpenter,larry sulkis,tobe hooper","comedy,horror,sci-fi",united states,english,0.321285140562249
5947,5948,demon house,2018,16+,0.4864864864864864,45%,0,0,1,0,0,zak bagans,"documentary,horror,mystery,thriller",united states,english,0.4016064257028112
770,771,may the devil take you,2018,18+,0.5945945945945945,83%,1,0,0,0,0,timo tjahjanto,horror,indonesia,indonesian,0.3975903614457831
16618,16619,america's heart and soul,2004,7+,0.4729729729729728,50%,0,0,0,1,0,louie schwartzberg,documentary,united states,english,0.2931726907630522
4548,4549,the proposition,2005,18+,0.7837837837837837,86%,0,0,1,0,0,"bob odenkirk,brett ratner,elizabeth banks,griffin dunne,james duffy,james gunn,jonathan van tulleken,patrik forsberg,peter farrelly,rusty cundieff,steve carr,steven brill,will graham",comedy,united states,english,0.3333333333333333
532,533,mowgli: legend of the jungle,2018,13+,0.6621621621621621,52%,1,0,0,0,0,andy serkis,"adventure,drama,fantasy","united kingdom,united states","english,hindi",0.37349397590361444
31,32,drive,2011,18+,0.8378378378378377,92%,1,0,1,0,0,nicolas winding refn,"crime,drama",united states,"english,spanish",0.35742971887550196
16299,16300,frankenweenie,2012,7+,0.7162162162162161,87%,0,0,0,1,0,tim burton,"animation,comedy,family,horror,sci-fi",united states,english,0.3052208835341365
6226,6227,small town murder songs,2010,18+,0.581081081081081,79%,0,0,1,0,0,ed gass-donnelly,"crime,drama,thriller",canada,"english,low german",0.2570281124497992
1513,1514,don't knock twice,2017,18+,0.4729729729729728,24%,1,0,0,0,0,caradog w. james,"drama,fantasy,horror,mystery,thriller",united kingdom,english,0.3293172690763052
4975,4976,breakfast on pluto,2005,18+,0.7567567567567566,57%,0,0,1,0,0,neil jordan,"comedy,drama","ireland,united kingdom","english,irish",0.4698795180722891
4539,4540,murder on the orient express,1974,7+,0.7702702702702701,89%,0,0,1,0,0,kenneth branagh,"crime,drama,mystery","malta,united states","arabic,english,french,german",0.41365461847389556
5966,5967,into temptation,2009,18+,0.6621621621621621,80%,0,0,1,0,0,patrick coyle,drama,united states,english,0.3373493975903614
7145,7146,slugs,1988,18+,0.4864864864864864,38%,0,0,1,0,0,juan piquer simón,horror,"spain,united states","english,spanish",0.3253012048192771
8404,8405,ash wednesday,2002,18+,0.581081081081081,10%,0,0,1,0,0,larry peerce,"drama,mystery",united states,english,0.35341365461847385
7329,7330,chapter 27,2007,18+,0.554054054054054,18%,0,0,1,0,0,j.p. schaefer,"biography,crime,drama,history","canada,united states",english,0.2931726907630522
6160,6161,generation wealth,2018,18+,0.6756756756756754,45%,0,0,1,0,0,lauren greenfield,documentary,united states,english,0.37751004016064255
705,706,wakefield,2017,18+,0.635135135135135,74%,1,0,0,0,0,robin swicord,drama,united states,english,0.38152610441767065
5083,5084,cutter's way,1981,18+,0.7162162162162161,91%,0,0,1,0,0,ivan passer,"crime,drama,mystery,thriller",united states,english,0.393574297188755
3713,3714,jackass 3d,2010,18+,0.7297297297297296,65%,0,1,1,0,0,jeff tremaine,"action,comedy,documentary",united states,english,0.3373493975903614
509,510,berlin syndrome,2017,18+,0.635135135135135,75%,1,0,0,0,0,cate shortland,"drama,horror,mystery,thriller",australia,"english,german,russian",0.4216867469879518
3604,3605,the host,2006,18+,0.7432432432432431,93%,0,1,0,0,0,bong joon ho,"action,drama,horror,sci-fi",south korea,"english,korean",0.4377510040160642
8820,8821,quitters,2015,18+,0.5135135135135135,44%,0,0,1,0,0,noah pritzker,"comedy,drama,family",united states,english,0.3373493975903614
804,805,ginger & rosa,2012,13+,0.635135135135135,78%,1,0,0,0,0,sally potter,drama,"canada,croatia,denmark,united kingdom",english,0.31726907630522083
4083,4084,a kind of murder,2016,18+,0.4999999999999999,38%,0,1,0,0,0,andy goddard,"crime,drama,mystery,thriller",united states,english,0.3373493975903614
1740,1741,ready to mingle,2019,18+,0.581081081081081,44%,1,0,0,0,0,luis javier henaine,comedy,mexico,spanish,0.3373493975903614
5999,6000,boom bust boom,2016,all,0.7432432432432431,85%,0,0,1,0,0,"ben timlett,bill jones,terry jones","documentary,history","netherlands,united kingdom,united states",english,0.25301204819277107
857,858,we are your friends,2015,18+,0.6216216216216215,38%,1,0,0,0,0,max joseph,"drama,music,romance","france,united kingdom,united states",english,0.34136546184738953
5327,5328,the collector,2009,18+,0.6486486486486486,29%,0,0,1,0,0,marcus dunstan,"action,crime,horror,thriller",united states,english,0.31726907630522083
16383,16384,chimpanzee,2012,all,0.7567567567567566,76%,0,0,0,1,0,"alastair fothergill,mark linfield","documentary,family","tanzania,united states",english,0.2690763052208835
280,281,the edge of democracy,2019,16+,0.7432432432432431,97%,1,0,0,0,0,petra costa,"documentary,history",brazil,"english,portuguese",0.4417670682730923
7284,7285,the loss of a teardrop diamond,2008,13+,0.5675675675675674,27%,0,0,1,0,0,jodie markell,"drama,romance",united states,english,0.3654618473895582
4521,4522,the virgin suicides,1999,18+,0.7567567567567566,76%,0,0,1,0,0,sofia coppola,"drama,romance",united states,english,0.34538152610441764
4123,4124,manglehorn,2015,13+,0.5405405405405403,50%,0,1,0,0,0,david gordon green,drama,united states,english,0.34538152610441764
6699,6700,the final season,2007,7+,0.6756756756756754,24%,0,0,1,0,0,david mickey evans,"drama,sport",united states,english,0.4337349397590361
20,21,there will be blood,2007,18+,0.8918918918918917,91%,1,0,0,0,0,paul thomas anderson,drama,united states,"american sign language,english",0.5903614457831324
6313,6314,tapeheads,1988,18+,0.554054054054054,60%,0,0,1,0,0,bill fishman,"comedy,music",united states,english,0.3293172690763052
406,407,6 underground,2019,18+,0.6081081081081079,36%,1,0,0,0,0,michael bay,"action,comedy,thriller",united states,"cantonese,english,french,italian,spanish,turkmen,ukrainian",0.4698795180722891
10952,10953,spinning into butter,2007,18+,0.3648648648648647,16%,0,0,1,0,0,mark brokaw,drama,united states,english,0.3012048192771084
742,743,highway,2014,13+,0.8243243243243241,88%,1,0,0,0,0,imtiaz ali,"crime,drama,romance",india,"english,hindi",0.4899598393574297
16355,16356,high school musical 2,2007,all,0.4594594594594593,82%,0,0,0,1,0,kenny ortega,"comedy,drama,family,music,musical,romance",united states,english,0.37349397590361444
580,581,murder mystery,2019,13+,0.5945945945945945,44%,1,0,0,0,0,kyle newacheck,"action,comedy,crime,mystery,romance",united states,"english,french",0.34538152610441764
1272,1273,patrick,2018,16+,0.5675675675675674,36%,1,0,1,0,0,mandie fletcher,"comedy,family,romance",united kingdom,english,0.3333333333333333
3634,3635,the way back,2010,13+,0.7702702702702701,74%,0,1,1,0,0,gavin o'connor,"drama,sport",united states,english,0.38955823293172687
5259,5260,stigmata,1999,18+,0.6216216216216215,22%,0,0,1,0,0,rupert wainwright,horror,"mexico,united states","aramaic,assyrian neo-aramaic,english,italian,portuguese",0.36947791164658633
4818,4819,the dresser,1983,7+,0.8108108108108105,100%,0,0,1,0,0,peter yates,drama,united kingdom,english,0.429718875502008
1191,1192,skiptrace,2016,13+,0.554054054054054,38%,1,0,0,0,0,renny harlin,"action,adventure,comedy,crime,thriller","china,hong kong,united states","english,mandarin,mongolian",0.38554216867469876
5897,5898,the alibi,2006,18+,0.6486486486486486,57%,0,0,1,0,0,"kurt mattila,matt checkowski","comedy,drama,romance","netherlands,united states",english,0.31726907630522083
5095,5096,the english surgeon,2009,16+,0.8783783783783781,89%,0,0,1,0,0,geoffrey smith,documentary,united kingdom,"english,ukrainian",0.3333333333333333
4727,4728,southern comfort,1981,18+,0.7567567567567566,82%,0,0,1,0,0,walter hill,"action,thriller",united states,"english,french",0.38152610441767065
1857,1858,hoodwinked too! hood vs. evil,2011,7+,0.41891891891891886,11%,1,0,0,0,0,mike disa,"animation,comedy,crime,family,mystery",united states,english,0.3012048192771084
1667,1668,skin trade,2014,18+,0.5405405405405403,25%,1,0,0,0,0,ekachai uekrongtham,"action,crime,thriller","canada,thailand,united states","english,thai",0.34136546184738953
5716,5717,tai chi zero,2012,13+,0.6081081081081079,60%,0,0,1,0,0,stephen fung,"action,adventure,drama",china,"english,mandarin",0.34939759036144574
4980,4981,finders keepers,2015,18+,0.7027027027027025,98%,0,0,1,0,0,"bryan carberry,clay tweel",documentary,united states,english,0.285140562248996
116,117,green room,2015,18+,0.7297297297297296,91%,1,0,0,0,0,jeremy saulnier,"horror,music,thriller",united states,english,0.3373493975903614
7446,7447,the sensation of sight,2006,18+,0.6756756756756754,50%,0,0,1,0,0,aaron j. wiederspahn,drama,united states,english,0.49397590361445776
4543,4544,ernest & celestine,2012,7+,0.8513513513513513,97%,0,0,1,0,0,"benjamin renner,stéphane aubier,vincent patar","adventure,animation,comedy,crime,drama,family,fantasy","belgium,france,luxembourg","english,french",0.27710843373493976
1496,1497,tremors: a cold day in hell,2018,13+,0.4594594594594593,40%,1,0,0,0,0,don michael paul,"action,adventure,comedy,horror,sci-fi,thriller","south africa,united states",english,0.34939759036144574
5302,5303,hawking,2013,18+,0.7702702702702701,85%,0,0,1,0,0,philip martin,"biography,drama",united kingdom,english,0.31726907630522083
6319,6320,holly,2006,18+,0.7027027027027025,65%,0,0,1,0,0,bobby roth,"drama,family,music",united states,"english,french,german,italian",0.4377510040160642
689,690,self/less,2015,13+,0.6621621621621621,19%,1,0,0,0,0,tarsem singh,"action,mystery,sci-fi,thriller",united states,english,0.4257028112449799
685,686,seeing allred,2018,16+,0.7027027027027025,100%,1,0,0,0,0,"roberta grossman,sophie sartain",documentary,united states,english,0.34136546184738953
50,51,the hateful eight,2015,18+,0.8378378378378377,75%,1,0,0,0,0,quentin tarantino,"crime,drama,mystery,thriller,western",united states,"english,french,spanish",0.6305220883534136
5260,5261,"tomorrow, when the war began",2010,18+,0.6216216216216215,64%,0,0,1,0,0,stuart beattie,"action,adventure,drama",australia,english,0.36947791164658633
7123,7124,3 nights in the desert,2014,18+,0.4729729729729728,40%,0,0,1,0,0,gabriel cowan,drama,united states,english,0.31726907630522083
5863,5864,witness protection,1999,18+,0.6216216216216215,60%,0,0,1,0,0,richard pearce,"crime,drama",united states,english,0.37751004016064255
149,150,gerald's game,2017,18+,0.6756756756756754,90%,1,0,0,0,0,mike flanagan,"drama,horror,thriller",united states,english,0.36947791164658633
4611,4612,frantz,2016,13+,0.7972972972972971,91%,0,0,1,0,0,françois ozon,"drama,history,romance,war","france,germany","french,german",0.40963855421686746
3580,3581,free solo,2018,13+,0.8918918918918917,97%,0,1,0,1,0,"elizabeth chai vasarhelyi,jimmy chin","adventure,documentary,sport",united states,english,0.35742971887550196
5053,5054,bunty aur babli,2005,7+,0.6216216216216215,83%,0,0,1,0,0,shaad ali,"comedy,drama,romance",india,"english,hindi",0.6385542168674698
6850,6851,blackball,2003,18+,0.5405405405405403,41%,0,0,1,0,0,mel smith,"comedy,drama,sport",united kingdom,english,0.34136546184738953
7148,7149,captivated: the trials of pamela smart,2014,16+,0.6756756756756754,75%,0,0,1,0,0,jeremiah zagar,documentary,united states,english,0.34939759036144574
462,463,the runaways,2010,18+,0.6621621621621621,70%,1,0,0,0,0,floria sigismondi,"biography,drama,music",united states,english,0.38152610441767065
6640,6641,plush,2013,18+,0.4999999999999999,33%,0,0,1,0,0,catherine hardwicke,"drama,music,romance,thriller",united states,english,0.35341365461847385
16281,16282,alice in wonderland,1951,all,0.7837837837837837,81%,0,0,0,1,0,tim burton,"adventure,family,fantasy",united states,english,0.38955823293172687
6187,6188,hiding out,1987,13+,0.6486486486486486,33%,0,0,1,0,0,bob giraldi,"comedy,drama,romance,thriller",united states,english,0.34939759036144574
282,283,under the skin,2014,18+,0.635135135135135,85%,1,0,0,0,0,jonathan glazer,"drama,horror,sci-fi,thriller","switzerland,united kingdom",english,0.38955823293172687
5762,5763,mr. nice,2010,18+,0.6486486486486486,53%,0,0,1,0,0,bernard rose,"biography,comedy,crime,drama","spain,united kingdom","english,spanish",0.4417670682730923
3591,3592,booksmart,2019,18+,0.7567567567567566,97%,0,1,0,0,0,olivia wilde,comedy,united states,"english,mandarin,spanish",0.3654618473895582
5651,5652,wonder wheel,2017,13+,0.6216216216216215,32%,0,0,1,0,0,woody allen,drama,united states,english,0.36144578313253006
8879,8880,tony n' tina's wedding,2004,18+,0.31081081081081074,25%,0,0,1,0,0,roger paradiso,comedy,united states,english,0.3975903614457831
7502,7503,home sweet hell,2015,18+,0.5135135135135135,5%,0,0,1,0,0,anthony burns,"comedy,crime,thriller",united states,"english,french",0.34939759036144574
145,146,blue ruin,2013,18+,0.7432432432432431,96%,1,0,0,0,0,jeremy saulnier,"crime,drama,thriller","france,united states",english,0.31726907630522083
3959,3960,a crooked somebody,2018,18+,0.6216216216216215,80%,0,1,0,0,0,trevor white,"crime,drama,thriller",united states,english,0.3654618473895582
4770,4771,my friend dahmer,2017,18+,0.6216216216216215,87%,0,0,1,0,0,marc meyers,"biography,drama",united states,english,0.38554216867469876
137,138,steve jobs,2015,18+,0.7567567567567566,85%,1,0,0,0,0,danny boyle,"biography,drama","united kingdom,united states",english,0.4457831325301204
925,926,amanda knox,2016,18+,0.7162162162162161,87%,1,0,0,0,0,"brian mcginn,rod blackhurst","crime,documentary","denmark,united states","english,italian",0.3253012048192771
13401,13402,31 north 62 east,2009,18+,0.3378378378378377,8%,0,0,1,0,0,tristan loraine,thriller,united kingdom,english,0.37751004016064255
6844,6845,codegirl,2015,all,0.635135135135135,60%,0,0,1,0,0,lesley chilcott,documentary,united states,"english,french,portuguese,spanish",0.38554216867469876
3606,3607,we need to talk about kevin,2011,18+,0.7972972972972971,75%,0,1,1,0,0,lynne ramsay,"drama,mystery,thriller","united kingdom,united states",english,0.4056224899598393
6751,6752,robot overlords,2015,13+,0.40540540540540526,61%,0,0,1,0,0,jon wright,"action,adventure,sci-fi","canada,united kingdom",english,0.31726907630522083
5669,5670,super high me,2007,18+,0.6081081081081079,63%,0,0,1,0,0,michael blieden,"comedy,documentary",united states,english,0.3333333333333333
8517,8518,ruby,1977,18+,0.40540540540540526,67%,0,0,1,0,0,curtis harrington,"drama,horror",united states,english,0.2971887550200803
16321,16322,invincible,2006,7+,0.7432432432432431,72%,0,0,0,1,0,angelina jolie,"biography,drama,sport,war",united states,"english,italian,japanese",0.5060240963855421
4581,4582,gia,1998,18+,0.7297297297297296,92%,0,0,1,0,0,michael cristofer,"biography,drama,romance",united states,"english,french,german",0.4377510040160642
7321,7322,"easy come, easy go",1967,7+,0.4999999999999999,43%,0,0,1,0,0,john rich,"adventure,comedy,music",united states,english,0.3373493975903614
4164,4165,the dinner,2017,18+,0.3918918918918918,46%,0,1,1,0,0,jay roach,comedy,united states,english,0.41365461847389556
191,192,kapoor & sons,2016,13+,0.8243243243243241,100%,1,0,0,0,0,shakun batra,"comedy,drama,romance",india,hindi,0.48594377510040154
310,311,the pixar story,2007,all,0.8378378378378377,86%,1,0,0,0,0,leslie iwerks,documentary,united states,english,0.3092369477911646
7662,7663,seven girlfriends,1999,13+,0.5675675675675674,50%,0,0,1,0,0,paul lazarus,"comedy,romance",united states,english,0.35341365461847385
3583,3584,blazing saddles,1974,18+,0.8243243243243241,89%,0,1,0,0,0,mel brooks,"comedy,western",united states,"english,german,yiddish",0.3293172690763052
4114,4115,black rock,2012,18+,0.41891891891891886,52%,0,1,0,0,0,katie aselton,"horror,thriller",united states,english,0.2891566265060241
6224,6225,spread,2009,18+,0.5675675675675674,21%,0,0,1,0,0,david mackenzie,"comedy,drama,romance",united states,english,0.34538152610441764
16452,16453,roving mars,2006,7+,0.7567567567567566,70%,0,0,0,1,0,george butler,"documentary,short",united states,english,0.11646586345381527
550,551,the confirmation,2016,13+,0.6486486486486486,91%,1,0,0,0,0,bob nelson,"comedy,drama",canada,english,0.36144578313253006
16329,16330,phineas and ferb the movie: across the 2nd dimension,2011,all,0.7837837837837837,100%,0,0,0,1,0,"dan povenmire,jay lender,jeff 'swampy' marsh,kyle menke,robert hughes","action,adventure,animation,comedy,family,musical,sci-fi",united states,english,0.2690763052208835
617,618,sweetheart,2019,13+,0.554054054054054,94%,1,0,0,0,0,j.d. dillard,"adventure,drama,fantasy,horror,mystery,sci-fi,thriller",united states,english,0.285140562248996
0,1,inception,2010,13+,0.9729729729729728,87%,1,0,0,0,0,christopher nolan,"action,adventure,sci-fi,thriller","united kingdom,united states","english,french,japanese",0.5502008032128514
4067,4068,legendary,2010,13+,0.6216216216216215,19%,0,1,1,0,0,eric styles,"action,adventure,sci-fi,thriller","china,united kingdom","chinese,english",0.3253012048192771
9289,9290,the tenants,2006,18+,0.4864864864864864,32%,0,0,1,0,0,danny green,"crime,drama,romance,thriller","germany,united states",english,0.3293172690763052
4046,4047,the alchemist cookbook,2016,18+,0.4729729729729728,80%,0,1,1,0,0,joel potrykus,"comedy,drama,horror",united states,english,0.285140562248996
4823,4824,raising victor vargas,2002,18+,0.7567567567567566,96%,0,0,1,0,0,peter sollett,"drama,romance","france,united states","english,spanish",0.3092369477911646
836,837,a gray state,2017,18+,0.6216216216216215,100%,1,0,0,0,0,erik nelson,documentary,united states,english,0.3293172690763052
7621,7622,man about town,2006,18+,0.5270270270270269,38%,0,0,1,0,0,mike binder,"comedy,drama",united states,english,0.34136546184738953
1070,1071,girl on the third floor,2019,18+,0.40540540540540526,81%,1,0,0,0,0,travis stevens,"drama,horror,mystery",united states,english,0.3293172690763052
4650,4651,house of games,1987,18+,0.7702702702702701,96%,0,0,1,0,0,david mamet,"crime,thriller",united states,english,0.3654618473895582
7365,7366,galore,2013,7+,0.6216216216216215,50%,0,0,1,0,0,rhys graham,drama,australia,english,0.36947791164658633
674,675,into the forest,2016,18+,0.5675675675675674,76%,1,0,0,0,0,patricia rozema,"drama,horror,sci-fi,thriller",canada,english,0.36144578313253006
5362,5363,foxy brown,1974,18+,0.6621621621621621,60%,0,0,1,0,0,jack hill,"action,crime,thriller",united states,english,0.3253012048192771
6519,6520,baar baar dekho,2016,7+,0.4999999999999999,43%,0,0,1,0,0,nitya mehra,"comedy,drama,romance,sci-fi",india,"english,hindi",0.5220883534136546
166,167,the master,2012,18+,0.7567567567567566,85%,1,0,0,0,0,paul thomas anderson,drama,united states,"english,filipino",0.5100401606425702
1 Unnamed: 0 ID Title Year Age IMDb Rotten Tomatoes Netflix Hulu Prime Video Disney+ Type Directors Genres Country Language Runtime
2 4039 4040 the pink panther 2 2009 7+ 0.5405405405405403 13% 0 1 1 0 0 harald zwart action,adventure,comedy,crime,family,mystery united states english,french,italian,spanish 0.3253012048192771
3 666 667 the little hours 2017 18+ 0.5675675675675674 78% 1 0 0 0 0 jeff baena comedy,romance canada english 0.31726907630522083
4 9 10 inglourious basterds 2009 18+ 0.9054054054054053 89% 1 0 0 0 0 quentin tarantino adventure,drama,war germany,united states english,french,german,italian 0.570281124497992
5 812 813 maps to the stars 2014 18+ 0.6216216216216215 61% 1 0 0 0 0 david cronenberg comedy,drama canada,france,germany,united states english 0.4016064257028112
6 16437 16438 herbie rides again 1974 all 0.554054054054054 80% 0 0 0 1 0 robert stevenson comedy,family,fantasy,romance united states english 0.3092369477911646
7 16464 16465 jack 1996 13+ 0.5675675675675674 18% 0 0 0 1 0 albert hughes,allen hughes horror,mystery,thriller united states english 0.4457831325301204
8 16633 16634 the country bears 2002 all 0.3378378378378377 29% 0 0 0 1 0 peter hastings comedy,family,music,musical united states english 0.3092369477911646
9 6083 6084 switchback 1997 18+ 0.6486486486486486 32% 0 0 1 0 0 jeb stuart crime,mystery,thriller united states english 0.429718875502008
10 3576 3577 the graduate 1967 7+ 0.8648648648648647 86% 0 1 0 0 0 mike nichols comedy,drama,romance united states english 0.38152610441767065
11 884 885 hannibal buress: comedy camisado 2016 18+ 0.6756756756756754 100% 1 0 0 0 0 lance bangs comedy united states english 0.2891566265060241
12 7031 7032 the freebie 2010 18+ 0.4729729729729728 57% 0 0 1 0 0 katie aselton comedy,drama united states english 0.2690763052208835
13 8572 8573 noelle 2007 7+ 0.581081081081081 57% 0 0 1 1 0 marc lawrence comedy,family,fantasy united states english 0.35742971887550196
14 4579 4580 the last black man in san francisco 2019 18+ 0.7702702702702701 93% 0 0 1 0 0 joe talbot drama united states english 0.4417670682730923
15 1219 1220 shepherds and butchers 2017 18+ 0.7027027027027025 56% 1 0 0 0 0 oliver schmitz drama germany,south africa,united states afrikaans,english 0.38152610441767065
16 4465 4466 the farewell 2019 7+ 0.8108108108108105 98% 0 0 1 0 0 lulu wang comedy,drama china,united states english,italian,japanese,mandarin 0.35742971887550196
17 5170 5171 book club 2018 13+ 0.6081081081081079 55% 0 0 1 0 0 bill holderman comedy,drama,romance united states english,hungarian 0.37349397590361444
18 2483 2484 the open house 2018 18+ 0.2162162162162162 23% 1 0 0 0 0 matt angel,suzanne coote horror,thriller united states english 0.3333333333333333
19 1376 1377 love wedding repeat 2020 18+ 0.5270270270270269 21% 1 0 0 0 0 dean craig comedy italy,united kingdom english 0.35742971887550196
20 5653 5654 fugitive pieces 2007 18+ 0.7297297297297296 68% 0 0 1 0 0 jeremy podeswa drama,war canada,greece english,german,greek,yiddish 0.37349397590361444
21 7018 7019 the little traitor 2009 7+ 0.7162162162162161 41% 0 0 1 0 0 lynn roth drama israel,united states english,hebrew 0.3092369477911646
22 16265 16266 remember the titans 2000 7+ 0.8378378378378377 73% 0 0 0 1 0 boaz yakin biography,drama,sport united states english 0.40963855421686746
23 6955 6956 drunks 1997 18+ 0.6486486486486486 57% 0 0 1 0 0 peter cohn drama united states english 0.31726907630522083
24 3744 3745 the commuter 2018 13+ 0.635135135135135 56% 0 1 1 0 0 jaume collet-serra action,mystery,thriller china,france,united states english,spanish 0.37751004016064255
25 5061 5062 young sherlock holmes 1985 13+ 0.7027027027027025 64% 0 0 1 0 0 barry levinson adventure,fantasy,mystery,thriller united states english 0.393574297188755
26 3799 3800 villains 2019 18+ 0.6216216216216215 84% 0 1 0 0 0 dan berk,robert olsen comedy,drama,horror,thriller united states english 0.31726907630522083
27 5118 5119 brimstone 2016 18+ 0.7432432432432431 41% 0 0 1 0 0 martin koolhoven drama,mystery,thriller,western belgium,france,germany,netherlands,sweden,united kingdom,united states dutch,english 0.5502008032128514
28 4554 4555 arctic 2018 13+ 0.7027027027027025 89% 0 0 1 0 0 joe penna adventure,drama iceland danish,english 0.34939759036144574
29 5512 5513 tideland 2005 18+ 0.6621621621621621 31% 0 0 1 0 0 terry gilliam drama,fantasy,horror canada,united kingdom english 0.4377510040160642
30 10405 10406 mega shark vs. giant octopus 2009 18+ 0.12162162162162157 18% 0 0 1 0 0 jack perez action,adventure,comedy,horror,sci-fi,thriller united states english 0.3092369477911646
31 5691 5692 almost sunrise 2017 13+ 0.8108108108108105 90% 0 0 1 0 0 michael collins adventure,documentary,drama,war united states english 0.34939759036144574
32 5192 5193 upside down: the creation records story 2010 18+ 0.7567567567567566 100% 0 0 1 0 0 danny o'connor documentary,music united kingdom english 0.36144578313253006
33 5828 5829 life 2015 18+ 0.6081081081081079 65% 0 0 1 0 0 daniel espinosa horror,sci-fi,thriller united states english,japanese,vietnamese 0.37349397590361444
34 1571 1572 el camino christmas 2017 18+ 0.554054054054054 40% 1 0 0 0 0 david e. talbert comedy,crime,western united states english 0.3132530120481927
35 3565 3566 batman begins 2005 13+ 0.8918918918918917 84% 0 1 0 0 0 christopher nolan action,adventure united kingdom,united states english,mandarin 0.5180722891566265
36 5530 5531 once i was a beehive 2015 7+ 0.6216216216216215 75% 0 0 1 0 0 maclain nelson comedy,drama,family united states english 0.4337349397590361
37 5008 5009 the first great train robbery 1978 7+ 0.7162162162162161 73% 0 0 1 0 0 michael crichton adventure,crime,drama,thriller united kingdom english 0.3975903614457831
38 814 815 looney tunes: back in action 2003 7+ 0.554054054054054 56% 1 0 0 0 0 eric goldberg,joe dante adventure,animation,comedy,family,fantasy,sci-fi germany,united states english 0.3293172690763052
39 4511 4512 for sama 2019 7+ 0.9324324324324322 99% 0 0 1 0 0 edward watts,waad al-kateab documentary,war syria,united kingdom,united states arabic,english 0.35742971887550196
40 4592 4593 reds 1981 7+ 0.7702702702702701 90% 0 0 1 0 0 warren beatty biography,drama,history,romance united states english,finnish,french,german,italian,russian 0.7389558232931727
41 15490 15491 fish without a bicycle 2003 18+ 0.29729729729729715 10% 0 0 1 0 0 brian austin green comedy,drama,romance united states english 0.34538152610441764
42 16253 16254 who framed roger rabbit 1988 7+ 0.8243243243243241 97% 0 0 0 1 0 richard williams,robert zemeckis adventure,animation,comedy,crime,family,fantasy,mystery united states english 0.37349397590361444
43 10660 10661 julie walking home 2002 18+ 0.6486486486486486 43% 0 0 1 0 0 agnieszka holland drama,romance canada,germany,poland,united states english,polish,russian 0.429718875502008
44 5972 5973 prescription thugs 2016 13+ 0.7297297297297296 69% 0 0 1 0 0 chris bell,greg young,josh alexander documentary united states english 0.3012048192771084
45 4060 4061 distorted 2018 18+ 0.44594594594594583 18% 0 1 0 0 0 rob w. king crime,mystery,thriller canada english 0.3012048192771084
46 5678 5679 the summit 2012 18+ 0.7162162162162161 64% 0 0 1 0 0 nick ryan documentary ireland,united kingdom,united states english,italian 0.3373493975903614
47 5074 5075 hollywood shuffle 1987 18+ 0.7297297297297296 88% 0 0 1 0 0 robert townsend comedy united states english 0.2690763052208835
48 11420 11421 that's what she said 2012 18+ 0.31081081081081074 8% 0 0 1 0 0 carrie preston comedy united states english 0.2931726907630522
49 5179 5180 dreamchild 1985 7+ 0.7027027027027025 100% 0 0 1 0 0 gavin millar biography,comedy,drama,fantasy,romance united kingdom english 0.3333333333333333
50 6015 6016 lakeboat 2000 18+ 0.6081081081081079 83% 0 0 1 0 0 joe mantegna drama canada,united states english 0.34939759036144574
51 4756 4757 phenomena 1985 18+ 0.7027027027027025 78% 0 0 1 0 0 dario argento horror,mystery italy,switzerland danish,italian,swiss german 0.4216867469879518
52 6597 6598 brick lane 2007 13+ 0.6756756756756754 68% 0 0 1 0 0 sarah gavron drama india,united kingdom bengali,english 0.3654618473895582
53 1423 1424 lila & eve 2015 18+ 0.5675675675675674 40% 1 0 1 0 0 charles stone iii crime,drama,mystery,thriller united states english 0.3333333333333333
54 4833 4834 salmon fishing in the yemen 2012 13+ 0.7027027027027025 67% 0 0 1 0 0 lasse hallström comedy,drama,romance united kingdom arabic,english,mandarin 0.38554216867469876
55 5796 5797 flying swords of dragon gate 2011 18+ 0.5945945945945945 68% 0 0 1 0 0 hark tsui action,adventure china mandarin 0.4457831325301204
56 7702 7703 grassroots 2012 18+ 0.4999999999999999 50% 0 0 1 0 0 stephen gyllenhaal comedy,drama united states english 0.34939759036144574
57 595 596 fire in paradise 2019 18+ 0.7837837837837837 80% 1 0 0 0 0 drea cooper,zackary canepari documentary,short united states english 0.11244979919678713
58 247 248 what happened to monday 2017 18+ 0.7162162162162161 59% 1 0 0 0 0 tommy wirkola action,adventure,crime,fantasy,mystery,sci-fi,thriller belgium,france,united kingdom,united states english 0.4497991967871486
59 4109 4110 body at brighton rock 2019 18+ 0.4999999999999999 66% 0 1 0 0 0 roxanne benjamin horror,mystery,thriller united states english 0.3052208835341365
60 6559 6560 wish upon 2017 13+ 0.4594594594594593 19% 0 0 1 0 0 john r. leonetti drama,fantasy,horror,mystery,thriller canada,united states english 0.31726907630522083
61 4670 4671 carnival of souls 1962 7+ 0.7432432432432431 86% 0 0 1 0 0 herk harvey horror,mystery united states english 0.2690763052208835
62 9022 9023 new year's evil 1980 18+ 0.43243243243243235 14% 0 0 1 0 0 emmett alston horror,thriller united states english 0.2971887550200803
63 6561 6562 the weight of water 2000 18+ 0.581081081081081 35% 0 0 1 0 0 kathryn bigelow crime,drama,mystery,thriller canada,france,united states english 0.41365461847389556
64 6649 6650 grateful dawg 2000 13+ 0.7567567567567566 70% 0 0 1 0 0 gillian grisman documentary united states english 0.28112449799196787
65 13164 13165 13th child 2002 18+ 0.17567567567567563 40% 0 0 1 0 0 steven stockage,thomas ashley horror,mystery,thriller united states english 0.35341365461847385
66 5687 5688 northern soul 2014 13+ 0.6486486486486486 76% 0 0 1 0 0 elaine constantine drama,music united kingdom english 0.3654618473895582
67 6726 6727 slice 2018 18+ 0.3918918918918918 57% 0 0 1 0 0 austin vesely comedy,crime,fantasy,horror united states english 0.2891566265060241
68 3587 3588 how to train your dragon: the hidden world 2019 7+ 0.7972972972972971 91% 0 1 0 0 0 dean deblois action,adventure,animation,family,fantasy japan,united states english 0.37349397590361444
69 3913 3914 legion of brothers 2017 16+ 0.554054054054054 100% 0 1 0 0 0 greg barker documentary,war united states english 0.2730923694779116
70 7177 7178 trudell 2005 7+ 0.7567567567567566 33% 0 0 1 0 0 heather rae documentary united states english 0.27710843373493976
71 4533 4534 the italian job 1969 all 0.7702702702702701 83% 0 0 1 0 0 f. gary gray action,crime,thriller france,germany,italy,united kingdom,united states english,italian,russian 0.4016064257028112
72 4706 4707 dead snow 2: red vs. dead 2014 18+ 0.7162162162162161 81% 0 0 1 0 0 tommy wirkola action,comedy,horror iceland,norway,united kingdom,united states english,german,norwegian 0.35742971887550196
73 16313 16314 james and the giant peach 1996 7+ 0.689189189189189 91% 0 0 0 1 0 henry selick adventure,animation,family,fantasy,musical united kingdom,united states english 0.2730923694779116
74 8592 8593 between love & goodbye 2009 18+ 0.554054054054054 33% 0 0 1 0 0 casper andreas drama,music,romance united states english,french 0.34538152610441764
75 1193 1194 miss virginia 2019 16+ 0.6756756756756754 60% 1 0 0 0 0 r.j. daniel hanna drama united states english 0.3654618473895582
76 3776 3777 the china hustle 2018 18+ 0.7567567567567566 77% 0 1 0 0 0 jed rothstein documentary united states english 0.285140562248996
77 937 938 atlantics 2019 16+ 0.689189189189189 95% 1 0 0 0 0 mati diop drama,mystery,romance belgium,france,senegal arabic,english,french,wolof 0.38152610441767065
78 4044 4045 american folk 2018 7+ 0.6081081081081079 76% 0 1 1 0 0 david heinz drama,musical united states english 0.35341365461847385
79 4817 4818 agora 2009 13+ 0.7567567567567566 53% 0 0 1 0 0 alejandro amenábar adventure,biography,drama,history,romance bulgaria,malta,spain english 0.46586345381526095
80 1544 1545 the assignment 2016 18+ 0.40540540540540526 34% 1 0 0 0 0 walter hill action,crime,thriller canada,france,united states english 0.3373493975903614
81 5479 5480 ta ra rum pum 2007 all 0.5405405405405403 50% 0 0 1 0 0 siddharth anand family,romance,sport india,united states english,hindi 0.570281124497992
82 644 645 13 sins 2014 18+ 0.635135135135135 65% 1 0 0 0 0 daniel stamm horror,thriller united states english 0.3293172690763052
83 5220 5221 a quiet passion 2016 13+ 0.6486486486486486 92% 0 0 1 0 0 terence davies biography,drama belgium,canada,united kingdom,united states english 0.45783132530120474
84 2030 2031 blood money 2017 18+ 0.3783783783783783 50% 1 0 1 0 0 lucky mckee crime,drama,thriller united states english 0.35742971887550196
85 12004 12005 shopping for fangs 1997 18+ 0.5675675675675674 50% 0 0 1 0 0 justin lin,quentin lee drama canada,united states english 0.31726907630522083
86 4875 4876 salaam namaste 2005 7+ 0.6216216216216215 83% 0 0 1 0 0 siddharth anand comedy,drama,romance india english,hindi 0.5903614457831324
87 6679 6680 so undercover 2012 13+ 0.4594594594594593 6% 0 0 1 0 0 tom vaughan action,comedy,crime,drama united states english 0.3333333333333333
88 4516 4517 the look of silence 2014 13+ 0.9054054054054053 96% 0 0 1 0 0 joshua oppenheimer biography,documentary,history denmark,finland,france,germany,indonesia,israel,netherlands,norway,united kingdom,united states indonesian 0.36947791164658633
89 5295 5296 a man called horse 1970 18+ 0.7162162162162161 86% 0 0 1 0 0 elliot silverstein adventure,drama,western mexico,united states english,french,sioux 0.41365461847389556
90 5009 5010 conversations with other women 2006 18+ 0.7297297297297296 74% 0 0 1 0 0 hans canosa comedy,drama,romance united kingdom,united states english 0.2931726907630522
91 5937 5938 fat man and little boy 1989 13+ 0.6621621621621621 47% 0 0 1 0 0 roland joffé biography,drama,history,war mexico,united states english 0.46586345381526095
92 1680 1681 cats & dogs: the revenge of kitty galore 2010 7+ 0.3648648648648647 13% 1 0 0 0 0 brad peyton action,comedy,family,fantasy australia,united states english 0.285140562248996
93 5736 5737 the horseman 2008 18+ 0.6621621621621621 59% 0 0 1 0 0 jonas åkerlund crime,drama,mystery,thriller united states english 0.31726907630522083
94 119 120 cloverfield 2008 13+ 0.7297297297297296 77% 1 0 0 0 0 matt reeves action,adventure,horror,mystery,sci-fi,thriller united states english,russian 0.2971887550200803
95 3804 3805 the overnight 2015 18+ 0.6081081081081079 83% 0 1 1 0 0 patrick brice comedy,mystery united states english,french 0.2730923694779116
96 3809 3810 the quake 2018 13+ 0.6216216216216215 84% 0 1 0 0 0 john andreas andersen action,drama,thriller norway norwegian 0.38152610441767065
97 6866 6867 strangerland 2015 18+ 0.4864864864864864 41% 0 0 1 0 0 kim farrant drama,mystery,thriller australia,ireland english 0.4056224899598393
98 399 400 get me roger stone 2017 16+ 0.7837837837837837 88% 1 0 0 0 0 daniel dimauro,dylan bank,morgan pehme biography,documentary united states english 0.3253012048192771
99 16239 16240 guardians of the galaxy vol. 2 2017 13+ 0.8108108108108105 85% 0 0 0 1 0 james gunn action,adventure,comedy,sci-fi united states english 0.502008032128514
100 6299 6300 the man from elysian fields 2001 18+ 0.6756756756756754 51% 0 0 1 0 0 george hickenlooper drama,romance united states english 0.38152610441767065
101 522 523 chappaquiddick 2018 13+ 0.6621621621621621 81% 1 0 0 0 0 john curran drama,history,thriller sweden,united states english 0.38152610441767065
102 3844 3845 in search of greatness 2018 13+ 0.6756756756756754 92% 0 1 0 0 0 gabe polsky documentary united states english 0.2650602409638554
103 6932 6933 crazy as hell 2002 18+ 0.581081081081081 53% 0 0 1 0 0 eriq la salle drama,thriller united states english 0.40963855421686746
104 851 852 una 2017 18+ 0.6216216216216215 76% 1 0 0 0 0 benedict andrews drama,romance canada,united kingdom,united states english 0.3333333333333333
105 5205 5206 the age of stupid 2009 13+ 0.7297297297297296 73% 0 0 1 0 0 franny armstrong documentary,history,news,war united kingdom english,french 0.3253012048192771
106 3827 3828 friends with kids 2012 18+ 0.6081081081081079 67% 0 1 1 0 0 jennifer westfeldt comedy,drama,romance united states english 0.38554216867469876
107 696 697 the monster 2016 18+ 0.5135135135135135 81% 1 0 1 0 0 bryan bertino drama,fantasy,horror canada english 0.321285140562249
108 382 383 alpha dog 2006 18+ 0.7162162162162161 54% 1 0 0 0 0 nick cassavetes biography,crime,drama,thriller germany,united states english 0.4457831325301204
109 3855 3856 seymour: an introduction 2015 7+ 0.7837837837837837 100% 0 1 0 0 0 ethan hawke biography,documentary,music united states english 0.2931726907630522
110 396 397 the sapphires 2012 13+ 0.7297297297297296 91% 1 0 0 0 0 wayne blair biography,comedy,drama,music,romance australia aboriginal,english 0.36947791164658633
111 4286 4287 the eternal 1998 18+ 0.3783783783783783 33% 0 1 0 0 0 michael almereyda horror united states english 0.3373493975903614
112 5019 5020 images 1972 18+ 0.7432432432432431 69% 0 0 1 0 0 robert altman drama,horror,mystery united kingdom english,french 0.37349397590361444
113 1586 1587 point blank 2019 18+ 0.554054054054054 38% 1 0 1 0 0 joe lynch action,thriller france,united states english 0.3012048192771084
114 2179 2180 deep 2017 7+ 0.3378378378378377 33% 1 0 0 0 0 julio soto gurpide adventure,animation,comedy,family belgium,china,spain,switzerland,united kingdom,united states english 0.3253012048192771
115 133 134 barfi! 2012 all 0.8783783783783781 86% 1 0 0 0 0 anurag basu comedy,drama,romance india hindi 0.5622489959839357
116 3697 3698 colossal 2016 18+ 0.6216216216216215 81% 0 1 0 0 0 nacho vigalondo comedy,drama,fantasy,sci-fi,thriller canada,south korea,spain,united states english,korean 0.393574297188755
117 7163 7164 red hook summer 2012 18+ 0.44594594594594583 58% 0 0 1 0 0 spike lee drama united states english 0.4417670682730923
118 5267 5268 every little step 2008 13+ 0.7972972972972971 92% 0 0 1 0 0 adam del deo,james d. stern documentary,music united states english 0.34136546184738953
119 6628 6629 children shouldn't play with dead things 1973 7+ 0.5270270270270269 42% 0 0 1 0 0 bob clark comedy,horror united states english 0.3052208835341365
120 4574 4575 hard eight 1996 18+ 0.7567567567567566 84% 0 0 1 0 0 paul thomas anderson crime,drama united states english 0.3654618473895582
121 16399 16400 cinderella iii: a twist in time 2007 all 0.581081081081081 75% 0 0 0 1 0 frank nissen animation,family,fantasy,musical,romance united states english 0.25301204819277107
122 9908 9909 electric slide 2014 18+ 0.41891891891891886 14% 0 0 1 0 0 tristan patterson action,biography,crime,drama,thriller united states english 0.3373493975903614
123 3786 3787 where'd you go, bernadette 2019 13+ 0.6621621621621621 49% 0 1 0 0 0 richard linklater comedy,drama united states english 0.393574297188755
124 3691 3692 get smart 2008 13+ 0.6621621621621621 50% 0 1 0 0 0 peter segal action,adventure,comedy united states arabic,english,punjabi,russian 0.3975903614457831
125 1932 1933 the clapper 2018 18+ 0.4729729729729728 23% 1 0 0 0 0 dito montiel comedy,drama united states english 0.3132530120481927
126 3639 3640 border 2018 18+ 0.7297297297297296 97% 0 1 0 0 0 ali abbasi crime,drama,fantasy,romance,thriller denmark,sweden english,swedish 0.3975903614457831
127 132 133 jim & andy: the great beyond- featuring a very special, contractually obligated mention of tony clifton 2017 18+ 0.8243243243243241 94% 1 0 0 0 0 chris smith documentary canada,united states east-greenlandic,english 0.3333333333333333
128 7089 7090 the baker 2007 13+ 0.6486486486486486 14% 0 0 1 0 0 gareth lewis comedy,thriller united kingdom english 0.3012048192771084
129 5765 5766 gulliver's travels 1939 all 0.689189189189189 67% 0 0 1 0 0 rob letterman adventure,comedy,family,fantasy united states english 0.2971887550200803
130 6312 6313 healing 2014 18+ 0.689189189189189 75% 0 0 1 0 0 craig monahan drama australia english 0.4056224899598393
131 752 753 michael bolton's big, sexy valentine's day special 2017 18+ 0.689189189189189 100% 1 0 0 0 0 akiva schaffer,scott aukerman comedy,music,musical,romance united states english 0.17269076305220882
132 1419 1420 silent hill: revelation 3d 2012 18+ 0.4594594594594593 10% 1 0 0 0 0 m.j. bassett horror canada,france,japan english 0.3373493975903614
133 4819 4820 café society 2016 13+ 0.6756756756756754 71% 0 0 1 0 0 woody allen comedy,drama,romance united states english,hebrew 0.34136546184738953
134 1250 1251 immoral tales 1973 18+ 0.5405405405405403 43% 1 0 0 0 0 walerian borowczyk drama,romance france french,hungarian,italian 0.36947791164658633
135 715 716 horns 2013 18+ 0.6621621621621621 41% 1 0 0 0 0 alexandre aja comedy,crime,drama,fantasy,mystery,thriller canada,united states english 0.4377510040160642
136 378 379 the ritual 2017 18+ 0.635135135135135 71% 1 0 0 0 0 david bruckner horror,mystery,thriller canada,united kingdom english,swedish 0.3333333333333333
137 4015 4016 the cleanse 2018 18+ 0.4999999999999999 83% 0 1 0 0 0 bobby miller comedy,drama,fantasy,horror canada,united states english 0.28112449799196787
138 879 880 earth to echo 2014 7+ 0.5675675675675674 51% 1 0 0 0 0 dave green adventure,family,sci-fi united states english 0.321285140562249
139 900 901 the core 2003 13+ 0.5270270270270269 40% 1 0 1 0 0 jon amiel action,adventure,sci-fi,thriller canada,france,germany,italy,united kingdom,united states english 0.4979919678714859
140 4763 4764 danny collins 2015 18+ 0.7297297297297296 77% 0 0 1 0 0 dan fogelman biography,comedy,drama,music united states english 0.38152610441767065
141 5277 5278 is paris burning? 1966 7+ 0.7162162162162161 71% 0 0 1 0 0 rené clément drama,history,war france,united states english,french,german 0.6586345381526104
142 3574 3575 50/50 2011 18+ 0.8108108108108105 93% 0 1 0 0 0 jonathan levine comedy,drama,romance united states english 0.35742971887550196
143 16431 16432 the crimson wing: mystery of the flamingos 2008 all 0.7702702702702701 75% 0 0 0 1 0 leander ward,matthew aeberhard documentary united kingdom,united states english 0.2690763052208835
144 6970 6971 a little trip to heaven 2005 18+ 0.5945945945945945 33% 0 0 1 0 0 baltasar kormákur drama,thriller iceland,united states english 0.34939759036144574
145 11027 11028 it's so easy and other lies 2016 18+ 0.581081081081081 25% 0 0 1 0 0 christopher duddy documentary united states english 0.2931726907630522
146 385 386 extremely wicked, shockingly evil and vile 2019 18+ 0.6756756756756754 55% 1 0 0 0 0 joe berlinger biography,crime,drama,thriller united states english 0.3975903614457831
147 5585 5586 winter brothers 2017 16+ 0.6621621621621621 91% 0 0 1 0 0 hlynur palmason drama denmark,iceland danish,english 0.3333333333333333
148 6053 6054 art school confidential 2006 18+ 0.635135135135135 36% 0 0 1 0 0 terry zwigoff comedy,drama,romance united states english 0.3654618473895582
149 6346 6347 henry's crime 2010 18+ 0.5945945945945945 41% 0 0 1 0 0 malcolm venville comedy,crime,drama,romance united states english 0.38955823293172687
150 6601 6602 the window 2008 18+ 0.689189189189189 92% 0 0 1 0 0 ted tetzlaff drama,film-noir,thriller united states english 0.24899598393574296
151 5321 5322 short eyes 1977 18+ 0.7432432432432431 89% 0 0 1 0 0 robert m. young drama united states english 0.35742971887550196
152 22 23 dallas buyers club 2013 18+ 0.8648648648648647 93% 1 0 0 0 0 jean-marc vallée biography,drama united states english,japanese 0.4257028112449799
153 5832 5833 the souvenir 2019 18+ 0.6621621621621621 90% 0 0 1 0 0 joanna hogg drama,mystery,romance united kingdom,united states english 0.4377510040160642
154 5433 5434 dark river 2018 18+ 0.5675675675675674 79% 0 0 1 0 0 clio barnard drama,mystery,thriller united kingdom english 0.31726907630522083
155 8887 8888 queen of the lot 2013 18+ 0.4999999999999999 31% 0 0 1 0 0 henry jaglom comedy,drama united states english 0.4377510040160642
156 16294 16295 treasure planet 2002 7+ 0.7567567567567566 69% 0 0 0 1 0 john musker,ron clements adventure,animation,family,sci-fi united states english 0.3373493975903614
157 3826 3827 assassination nation 2018 18+ 0.581081081081081 73% 0 1 0 0 0 sam levinson action,comedy,crime,drama,horror,thriller united states english,italian 0.38955823293172687
158 4932 4933 neds 2010 16+ 0.7297297297297296 94% 0 0 1 0 0 peter mullan drama france,italy,united kingdom english,latin,scots 0.4538152610441767
159 5503 5504 vampire circus 1972 7+ 0.6486486486486486 80% 0 0 1 0 0 robert young horror united kingdom english 0.3052208835341365
160 5654 5655 sister my sister 1994 18+ 0.6756756756756754 63% 0 0 1 0 0 nancy meckler drama,thriller united kingdom english 0.3132530120481927
161 816 817 a christmas prince 2017 7+ 0.554054054054054 73% 1 0 1 0 0 alex zamm comedy,family,romance united states english 0.3253012048192771
162 5846 5847 sun choke 2015 18+ 0.5405405405405403 88% 0 0 1 0 0 ben cresciman drama,horror,mystery,thriller united states english 0.2891566265060241
163 5180 5181 unmistaken child 2009 7+ 0.7972972972972971 81% 0 0 1 0 0 nati baratz documentary israel english,hindi,nepali,tibetan 0.3654618473895582
164 8596 8597 just getting started 2017 13+ 0.3783783783783783 4% 0 0 1 0 0 ron shelton comedy,crime united states english 0.321285140562249
165 7630 7631 manufacturing dissent 2007 18+ 0.554054054054054 54% 0 0 1 0 0 debbie melnyk,rick caine documentary canada english 0.34538152610441764
166 347 348 candyman 1992 18+ 0.6756756756756754 74% 1 0 0 0 0 bernard rose horror,thriller united kingdom,united states english 0.35341365461847385
167 4774 4775 explorers 1985 7+ 0.6756756756756754 77% 0 0 1 0 0 joe dante adventure,comedy,family,romance,sci-fi united states english,german 0.393574297188755
168 4573 4574 beautiful boy 2018 18+ 0.7702702702702701 69% 0 0 1 0 0 felix van groeningen biography,drama united states english 0.4377510040160642
169 5348 5349 my kid could paint that 2007 13+ 0.7432432432432431 94% 0 0 1 0 0 amir bar-lev documentary,family,mystery united kingdom,united states english,mandarin 0.285140562248996
170 6239 6240 jennifer eight 1992 18+ 0.635135135135135 37% 0 0 1 0 0 bruce robinson crime,drama,mystery,thriller canada,united kingdom,united states english 0.4538152610441767
171 641 642 guzaarish 2010 7+ 0.7837837837837837 67% 1 0 0 0 0 sanjay leela bhansali drama india english,hindi 0.4618473895582329
172 2213 2214 happy family 2017 7+ 0.43243243243243235 10% 1 0 0 0 0 holger tappe animation,comedy,family,horror germany,united kingdom english,german 0.3293172690763052
173 95 96 saving mr. banks 2013 13+ 0.7972972972972971 79% 1 0 0 1 0 john lee hancock biography,comedy,drama australia,united kingdom,united states english 0.45783132530120474
174 5839 5840 who's watching oliver 2018 18+ 0.4729729729729728 86% 0 0 1 0 0 richie moore drama,horror thailand,united states english 0.3052208835341365
175 1560 1561 snow day 2000 7+ 0.4729729729729728 29% 1 0 0 0 0 chris koch adventure,comedy,family united states english 0.3132530120481927
176 6746 6747 illuminata 1998 18+ 0.6081081081081079 40% 0 0 1 0 0 john turturro drama,romance japan,spain,united states english 0.4337349397590361
177 3695 3696 sword art online: the movie - ordinal scale 2017 13+ 0.7837837837837837 100% 0 1 0 0 0 tomohiko itô action,adventure,animation,fantasy,sci-fi japan japanese 0.4337349397590361
178 120 121 burning 2018 18+ 0.7972972972972971 95% 1 0 0 0 0 chang-dong lee drama,mystery japan,south korea english,korean 0.5502008032128514
179 16402 16403 escape to witch mountain 1975 all 0.6486486486486486 76% 0 0 0 1 0 john hough adventure,family,fantasy,mystery,sci-fi united states english 0.34538152610441764
180 5927 5928 a turtle's tale: sammy's adventures 2010 all 0.6081081081081079 44% 0 0 1 0 0 ben stassen,mimi maynard adventure,animation,family belgium,france,united states danish,english,italian 0.3092369477911646
181 897 898 little monsters 1989 7+ 0.6081081081081079 50% 1 1 0 0 0 abe forsythe comedy,horror australia,united kingdom,united states english 0.3293172690763052
182 6547 6548 the vessel 2016 13+ 0.4999999999999999 67% 0 0 1 0 0 julio quintana drama puerto rico,united states english,spanish 0.3012048192771084
183 7410 7411 the passion of darkly noon 1995 18+ 0.581081081081081 17% 0 0 1 0 0 philip ridley drama,mystery,thriller belgium,germany,united kingdom english 0.35742971887550196
184 4839 4840 jin-roh: the wolf brigade 1999 18+ 0.7837837837837837 55% 0 0 1 0 0 hiroyuki okiura animation,drama,fantasy,thriller japan japanese 0.3654618473895582
185 258 259 the perfection 2018 18+ 0.6081081081081079 83% 1 0 0 0 0 richard shepard drama,horror,thriller united states english 0.31726907630522083
186 4482 4483 logan lucky 2017 13+ 0.7297297297297296 92% 0 0 1 0 0 steven soderbergh comedy,crime,drama china,united states english 0.429718875502008
187 44 45 indiana jones and the temple of doom 1984 7+ 0.8108108108108105 85% 1 0 0 0 0 steven spielberg action,adventure united states english,hindi,sinhalese 0.429718875502008
188 290 291 undefeated 2011 13+ 0.8243243243243241 96% 1 0 0 0 0 daniel lindsay,t.j. martin documentary,sport united states english 0.40963855421686746
189 1484 1485 mubarakan 2017 13+ 0.5405405405405403 43% 1 0 0 0 0 anees bazmee comedy,romance india hindi 0.5823293172690762
190 4944 4945 the hole in the ground 2019 18+ 0.554054054054054 84% 0 0 1 0 0 lee cronin drama,horror,mystery belgium,finland,ireland,united kingdom english 0.31726907630522083
191 7288 7289 child of god 2014 18+ 0.5270270270270269 42% 0 0 1 0 0 james franco crime,drama,thriller united states english 0.37349397590361444
192 5767 5768 bride of re-animator 1990 18+ 0.635135135135135 44% 0 0 1 0 0 brian yuzna comedy,horror,sci-fi,thriller united states english 0.34136546184738953
193 181 182 arthur christmas 2011 7+ 0.7432432432432431 92% 1 0 0 0 0 barry cook,sarah smith adventure,animation,comedy,family,fantasy united kingdom,united states english 0.34538152610441764
194 3956 3957 scenic route 2013 18+ 0.6621621621621621 67% 0 1 0 0 0 kevin goetz,michael goetz drama,thriller united states english 0.285140562248996
195 4189 4190 silent tongue 1993 13+ 0.4999999999999999 38% 0 1 1 0 0 sam shepard drama,horror,western france,netherlands,united kingdom,united states english 0.3654618473895582
196 5175 5176 photograph 2019 13+ 0.7027027027027025 79% 0 0 1 0 0 ritesh batra drama,romance germany,india,united states english,gujarati,hindi 0.3975903614457831
197 1271 1272 bébé's kids 1992 13+ 0.5675675675675674 30% 1 0 0 0 0 bruce w. smith animation,comedy,fantasy,musical united states english 0.23694779116465864
198 1733 1734 miss julie 2014 13+ 0.5135135135135135 51% 1 0 0 0 0 liv ullmann drama,romance france,ireland,norway,united kingdom english 0.4738955823293173
199 5065 5066 orchestra rehearsal 1978 18+ 0.7567567567567566 88% 0 0 1 0 0 federico fellini comedy,drama,music italy,west germany german,italian 0.23694779116465864
200 7658 7659 dead man running 2009 18+ 0.5945945945945945 14% 0 0 1 0 0 alex de rakoff action,crime,drama,thriller united kingdom english 0.3253012048192771
201 3971 3972 run the race 2019 7+ 0.581081081081081 40% 0 1 1 0 0 chris dowling drama,sport united states english 0.36144578313253006
202 5636 5637 the keeping room 2014 18+ 0.5945945945945945 75% 0 0 1 0 0 daniel barber drama,western united states english 0.3373493975903614
203 1206 1207 country strong 2010 13+ 0.635135135135135 22% 1 0 0 0 0 shana feste drama,music united states english 0.4257028112449799
204 5912 5913 humanoids from the deep 1980 18+ 0.554054054054054 56% 0 0 1 0 0 barbara peeters,jimmy t. murakami horror,sci-fi united states english 0.27710843373493976
205 6656 6657 bio-dome 1996 13+ 0.3918918918918918 4% 0 0 1 0 0 jason bloom comedy united states english 0.3092369477911646
206 7246 7247 dorfman in love 2013 13+ 0.5945945945945945 21% 0 0 1 0 0 brad leong comedy,drama,romance united states english 0.3253012048192771
207 741 742 joshua: teenager vs. superpower 2017 16+ 0.7297297297297296 93% 1 0 0 0 0 joe piscatella documentary united states cantonese,english 0.2730923694779116
208 6029 6030 coming through the rye 2016 13+ 0.635135135135135 70% 0 0 1 0 0 james steven sadwith drama united states english 0.34538152610441764
209 16377 16378 tuck everlasting 2002 7+ 0.6756756756756754 60% 0 0 0 1 0 jay russell drama,family,fantasy,romance united states english,french 0.31726907630522083
210 432 433 spitfire 2018 7+ 0.7972972972972971 94% 1 0 0 0 0 john cromwell drama united states english 0.3052208835341365
211 4513 4514 bridget jones's diary 2001 18+ 0.689189189189189 80% 0 0 1 0 0 sharon maguire comedy,drama,romance france,united kingdom,united states english 0.34538152610441764
212 5666 5667 body bags 1993 18+ 0.6081081081081079 67% 0 0 1 0 0 john carpenter,larry sulkis,tobe hooper comedy,horror,sci-fi united states english 0.321285140562249
213 5947 5948 demon house 2018 16+ 0.4864864864864864 45% 0 0 1 0 0 zak bagans documentary,horror,mystery,thriller united states english 0.4016064257028112
214 770 771 may the devil take you 2018 18+ 0.5945945945945945 83% 1 0 0 0 0 timo tjahjanto horror indonesia indonesian 0.3975903614457831
215 16618 16619 america's heart and soul 2004 7+ 0.4729729729729728 50% 0 0 0 1 0 louie schwartzberg documentary united states english 0.2931726907630522
216 4548 4549 the proposition 2005 18+ 0.7837837837837837 86% 0 0 1 0 0 bob odenkirk,brett ratner,elizabeth banks,griffin dunne,james duffy,james gunn,jonathan van tulleken,patrik forsberg,peter farrelly,rusty cundieff,steve carr,steven brill,will graham comedy united states english 0.3333333333333333
217 532 533 mowgli: legend of the jungle 2018 13+ 0.6621621621621621 52% 1 0 0 0 0 andy serkis adventure,drama,fantasy united kingdom,united states english,hindi 0.37349397590361444
218 31 32 drive 2011 18+ 0.8378378378378377 92% 1 0 1 0 0 nicolas winding refn crime,drama united states english,spanish 0.35742971887550196
219 16299 16300 frankenweenie 2012 7+ 0.7162162162162161 87% 0 0 0 1 0 tim burton animation,comedy,family,horror,sci-fi united states english 0.3052208835341365
220 6226 6227 small town murder songs 2010 18+ 0.581081081081081 79% 0 0 1 0 0 ed gass-donnelly crime,drama,thriller canada english,low german 0.2570281124497992
221 1513 1514 don't knock twice 2017 18+ 0.4729729729729728 24% 1 0 0 0 0 caradog w. james drama,fantasy,horror,mystery,thriller united kingdom english 0.3293172690763052
222 4975 4976 breakfast on pluto 2005 18+ 0.7567567567567566 57% 0 0 1 0 0 neil jordan comedy,drama ireland,united kingdom english,irish 0.4698795180722891
223 4539 4540 murder on the orient express 1974 7+ 0.7702702702702701 89% 0 0 1 0 0 kenneth branagh crime,drama,mystery malta,united states arabic,english,french,german 0.41365461847389556
224 5966 5967 into temptation 2009 18+ 0.6621621621621621 80% 0 0 1 0 0 patrick coyle drama united states english 0.3373493975903614
225 7145 7146 slugs 1988 18+ 0.4864864864864864 38% 0 0 1 0 0 juan piquer simón horror spain,united states english,spanish 0.3253012048192771
226 8404 8405 ash wednesday 2002 18+ 0.581081081081081 10% 0 0 1 0 0 larry peerce drama,mystery united states english 0.35341365461847385
227 7329 7330 chapter 27 2007 18+ 0.554054054054054 18% 0 0 1 0 0 j.p. schaefer biography,crime,drama,history canada,united states english 0.2931726907630522
228 6160 6161 generation wealth 2018 18+ 0.6756756756756754 45% 0 0 1 0 0 lauren greenfield documentary united states english 0.37751004016064255
229 705 706 wakefield 2017 18+ 0.635135135135135 74% 1 0 0 0 0 robin swicord drama united states english 0.38152610441767065
230 5083 5084 cutter's way 1981 18+ 0.7162162162162161 91% 0 0 1 0 0 ivan passer crime,drama,mystery,thriller united states english 0.393574297188755
231 3713 3714 jackass 3d 2010 18+ 0.7297297297297296 65% 0 1 1 0 0 jeff tremaine action,comedy,documentary united states english 0.3373493975903614
232 509 510 berlin syndrome 2017 18+ 0.635135135135135 75% 1 0 0 0 0 cate shortland drama,horror,mystery,thriller australia english,german,russian 0.4216867469879518
233 3604 3605 the host 2006 18+ 0.7432432432432431 93% 0 1 0 0 0 bong joon ho action,drama,horror,sci-fi south korea english,korean 0.4377510040160642
234 8820 8821 quitters 2015 18+ 0.5135135135135135 44% 0 0 1 0 0 noah pritzker comedy,drama,family united states english 0.3373493975903614
235 804 805 ginger & rosa 2012 13+ 0.635135135135135 78% 1 0 0 0 0 sally potter drama canada,croatia,denmark,united kingdom english 0.31726907630522083
236 4083 4084 a kind of murder 2016 18+ 0.4999999999999999 38% 0 1 0 0 0 andy goddard crime,drama,mystery,thriller united states english 0.3373493975903614
237 1740 1741 ready to mingle 2019 18+ 0.581081081081081 44% 1 0 0 0 0 luis javier henaine comedy mexico spanish 0.3373493975903614
238 5999 6000 boom bust boom 2016 all 0.7432432432432431 85% 0 0 1 0 0 ben timlett,bill jones,terry jones documentary,history netherlands,united kingdom,united states english 0.25301204819277107
239 857 858 we are your friends 2015 18+ 0.6216216216216215 38% 1 0 0 0 0 max joseph drama,music,romance france,united kingdom,united states english 0.34136546184738953
240 5327 5328 the collector 2009 18+ 0.6486486486486486 29% 0 0 1 0 0 marcus dunstan action,crime,horror,thriller united states english 0.31726907630522083
241 16383 16384 chimpanzee 2012 all 0.7567567567567566 76% 0 0 0 1 0 alastair fothergill,mark linfield documentary,family tanzania,united states english 0.2690763052208835
242 280 281 the edge of democracy 2019 16+ 0.7432432432432431 97% 1 0 0 0 0 petra costa documentary,history brazil english,portuguese 0.4417670682730923
243 7284 7285 the loss of a teardrop diamond 2008 13+ 0.5675675675675674 27% 0 0 1 0 0 jodie markell drama,romance united states english 0.3654618473895582
244 4521 4522 the virgin suicides 1999 18+ 0.7567567567567566 76% 0 0 1 0 0 sofia coppola drama,romance united states english 0.34538152610441764
245 4123 4124 manglehorn 2015 13+ 0.5405405405405403 50% 0 1 0 0 0 david gordon green drama united states english 0.34538152610441764
246 6699 6700 the final season 2007 7+ 0.6756756756756754 24% 0 0 1 0 0 david mickey evans drama,sport united states english 0.4337349397590361
247 20 21 there will be blood 2007 18+ 0.8918918918918917 91% 1 0 0 0 0 paul thomas anderson drama united states american sign language,english 0.5903614457831324
248 6313 6314 tapeheads 1988 18+ 0.554054054054054 60% 0 0 1 0 0 bill fishman comedy,music united states english 0.3293172690763052
249 406 407 6 underground 2019 18+ 0.6081081081081079 36% 1 0 0 0 0 michael bay action,comedy,thriller united states cantonese,english,french,italian,spanish,turkmen,ukrainian 0.4698795180722891
250 10952 10953 spinning into butter 2007 18+ 0.3648648648648647 16% 0 0 1 0 0 mark brokaw drama united states english 0.3012048192771084
251 742 743 highway 2014 13+ 0.8243243243243241 88% 1 0 0 0 0 imtiaz ali crime,drama,romance india english,hindi 0.4899598393574297
252 16355 16356 high school musical 2 2007 all 0.4594594594594593 82% 0 0 0 1 0 kenny ortega comedy,drama,family,music,musical,romance united states english 0.37349397590361444
253 580 581 murder mystery 2019 13+ 0.5945945945945945 44% 1 0 0 0 0 kyle newacheck action,comedy,crime,mystery,romance united states english,french 0.34538152610441764
254 1272 1273 patrick 2018 16+ 0.5675675675675674 36% 1 0 1 0 0 mandie fletcher comedy,family,romance united kingdom english 0.3333333333333333
255 3634 3635 the way back 2010 13+ 0.7702702702702701 74% 0 1 1 0 0 gavin o'connor drama,sport united states english 0.38955823293172687
256 5259 5260 stigmata 1999 18+ 0.6216216216216215 22% 0 0 1 0 0 rupert wainwright horror mexico,united states aramaic,assyrian neo-aramaic,english,italian,portuguese 0.36947791164658633
257 4818 4819 the dresser 1983 7+ 0.8108108108108105 100% 0 0 1 0 0 peter yates drama united kingdom english 0.429718875502008
258 1191 1192 skiptrace 2016 13+ 0.554054054054054 38% 1 0 0 0 0 renny harlin action,adventure,comedy,crime,thriller china,hong kong,united states english,mandarin,mongolian 0.38554216867469876
259 5897 5898 the alibi 2006 18+ 0.6486486486486486 57% 0 0 1 0 0 kurt mattila,matt checkowski comedy,drama,romance netherlands,united states english 0.31726907630522083
260 5095 5096 the english surgeon 2009 16+ 0.8783783783783781 89% 0 0 1 0 0 geoffrey smith documentary united kingdom english,ukrainian 0.3333333333333333
261 4727 4728 southern comfort 1981 18+ 0.7567567567567566 82% 0 0 1 0 0 walter hill action,thriller united states english,french 0.38152610441767065
262 1857 1858 hoodwinked too! hood vs. evil 2011 7+ 0.41891891891891886 11% 1 0 0 0 0 mike disa animation,comedy,crime,family,mystery united states english 0.3012048192771084
263 1667 1668 skin trade 2014 18+ 0.5405405405405403 25% 1 0 0 0 0 ekachai uekrongtham action,crime,thriller canada,thailand,united states english,thai 0.34136546184738953
264 5716 5717 tai chi zero 2012 13+ 0.6081081081081079 60% 0 0 1 0 0 stephen fung action,adventure,drama china english,mandarin 0.34939759036144574
265 4980 4981 finders keepers 2015 18+ 0.7027027027027025 98% 0 0 1 0 0 bryan carberry,clay tweel documentary united states english 0.285140562248996
266 116 117 green room 2015 18+ 0.7297297297297296 91% 1 0 0 0 0 jeremy saulnier horror,music,thriller united states english 0.3373493975903614
267 7446 7447 the sensation of sight 2006 18+ 0.6756756756756754 50% 0 0 1 0 0 aaron j. wiederspahn drama united states english 0.49397590361445776
268 4543 4544 ernest & celestine 2012 7+ 0.8513513513513513 97% 0 0 1 0 0 benjamin renner,stéphane aubier,vincent patar adventure,animation,comedy,crime,drama,family,fantasy belgium,france,luxembourg english,french 0.27710843373493976
269 1496 1497 tremors: a cold day in hell 2018 13+ 0.4594594594594593 40% 1 0 0 0 0 don michael paul action,adventure,comedy,horror,sci-fi,thriller south africa,united states english 0.34939759036144574
270 5302 5303 hawking 2013 18+ 0.7702702702702701 85% 0 0 1 0 0 philip martin biography,drama united kingdom english 0.31726907630522083
271 6319 6320 holly 2006 18+ 0.7027027027027025 65% 0 0 1 0 0 bobby roth drama,family,music united states english,french,german,italian 0.4377510040160642
272 689 690 self/less 2015 13+ 0.6621621621621621 19% 1 0 0 0 0 tarsem singh action,mystery,sci-fi,thriller united states english 0.4257028112449799
273 685 686 seeing allred 2018 16+ 0.7027027027027025 100% 1 0 0 0 0 roberta grossman,sophie sartain documentary united states english 0.34136546184738953
274 50 51 the hateful eight 2015 18+ 0.8378378378378377 75% 1 0 0 0 0 quentin tarantino crime,drama,mystery,thriller,western united states english,french,spanish 0.6305220883534136
275 5260 5261 tomorrow, when the war began 2010 18+ 0.6216216216216215 64% 0 0 1 0 0 stuart beattie action,adventure,drama australia english 0.36947791164658633
276 7123 7124 3 nights in the desert 2014 18+ 0.4729729729729728 40% 0 0 1 0 0 gabriel cowan drama united states english 0.31726907630522083
277 5863 5864 witness protection 1999 18+ 0.6216216216216215 60% 0 0 1 0 0 richard pearce crime,drama united states english 0.37751004016064255
278 149 150 gerald's game 2017 18+ 0.6756756756756754 90% 1 0 0 0 0 mike flanagan drama,horror,thriller united states english 0.36947791164658633
279 4611 4612 frantz 2016 13+ 0.7972972972972971 91% 0 0 1 0 0 françois ozon drama,history,romance,war france,germany french,german 0.40963855421686746
280 3580 3581 free solo 2018 13+ 0.8918918918918917 97% 0 1 0 1 0 elizabeth chai vasarhelyi,jimmy chin adventure,documentary,sport united states english 0.35742971887550196
281 5053 5054 bunty aur babli 2005 7+ 0.6216216216216215 83% 0 0 1 0 0 shaad ali comedy,drama,romance india english,hindi 0.6385542168674698
282 6850 6851 blackball 2003 18+ 0.5405405405405403 41% 0 0 1 0 0 mel smith comedy,drama,sport united kingdom english 0.34136546184738953
283 7148 7149 captivated: the trials of pamela smart 2014 16+ 0.6756756756756754 75% 0 0 1 0 0 jeremiah zagar documentary united states english 0.34939759036144574
284 462 463 the runaways 2010 18+ 0.6621621621621621 70% 1 0 0 0 0 floria sigismondi biography,drama,music united states english 0.38152610441767065
285 6640 6641 plush 2013 18+ 0.4999999999999999 33% 0 0 1 0 0 catherine hardwicke drama,music,romance,thriller united states english 0.35341365461847385
286 16281 16282 alice in wonderland 1951 all 0.7837837837837837 81% 0 0 0 1 0 tim burton adventure,family,fantasy united states english 0.38955823293172687
287 6187 6188 hiding out 1987 13+ 0.6486486486486486 33% 0 0 1 0 0 bob giraldi comedy,drama,romance,thriller united states english 0.34939759036144574
288 282 283 under the skin 2014 18+ 0.635135135135135 85% 1 0 0 0 0 jonathan glazer drama,horror,sci-fi,thriller switzerland,united kingdom english 0.38955823293172687
289 5762 5763 mr. nice 2010 18+ 0.6486486486486486 53% 0 0 1 0 0 bernard rose biography,comedy,crime,drama spain,united kingdom english,spanish 0.4417670682730923
290 3591 3592 booksmart 2019 18+ 0.7567567567567566 97% 0 1 0 0 0 olivia wilde comedy united states english,mandarin,spanish 0.3654618473895582
291 5651 5652 wonder wheel 2017 13+ 0.6216216216216215 32% 0 0 1 0 0 woody allen drama united states english 0.36144578313253006
292 8879 8880 tony n' tina's wedding 2004 18+ 0.31081081081081074 25% 0 0 1 0 0 roger paradiso comedy united states english 0.3975903614457831
293 7502 7503 home sweet hell 2015 18+ 0.5135135135135135 5% 0 0 1 0 0 anthony burns comedy,crime,thriller united states english,french 0.34939759036144574
294 145 146 blue ruin 2013 18+ 0.7432432432432431 96% 1 0 0 0 0 jeremy saulnier crime,drama,thriller france,united states english 0.31726907630522083
295 3959 3960 a crooked somebody 2018 18+ 0.6216216216216215 80% 0 1 0 0 0 trevor white crime,drama,thriller united states english 0.3654618473895582
296 4770 4771 my friend dahmer 2017 18+ 0.6216216216216215 87% 0 0 1 0 0 marc meyers biography,drama united states english 0.38554216867469876
297 137 138 steve jobs 2015 18+ 0.7567567567567566 85% 1 0 0 0 0 danny boyle biography,drama united kingdom,united states english 0.4457831325301204
298 925 926 amanda knox 2016 18+ 0.7162162162162161 87% 1 0 0 0 0 brian mcginn,rod blackhurst crime,documentary denmark,united states english,italian 0.3253012048192771
299 13401 13402 31 north 62 east 2009 18+ 0.3378378378378377 8% 0 0 1 0 0 tristan loraine thriller united kingdom english 0.37751004016064255
300 6844 6845 codegirl 2015 all 0.635135135135135 60% 0 0 1 0 0 lesley chilcott documentary united states english,french,portuguese,spanish 0.38554216867469876
301 3606 3607 we need to talk about kevin 2011 18+ 0.7972972972972971 75% 0 1 1 0 0 lynne ramsay drama,mystery,thriller united kingdom,united states english 0.4056224899598393
302 6751 6752 robot overlords 2015 13+ 0.40540540540540526 61% 0 0 1 0 0 jon wright action,adventure,sci-fi canada,united kingdom english 0.31726907630522083
303 5669 5670 super high me 2007 18+ 0.6081081081081079 63% 0 0 1 0 0 michael blieden comedy,documentary united states english 0.3333333333333333
304 8517 8518 ruby 1977 18+ 0.40540540540540526 67% 0 0 1 0 0 curtis harrington drama,horror united states english 0.2971887550200803
305 16321 16322 invincible 2006 7+ 0.7432432432432431 72% 0 0 0 1 0 angelina jolie biography,drama,sport,war united states english,italian,japanese 0.5060240963855421
306 4581 4582 gia 1998 18+ 0.7297297297297296 92% 0 0 1 0 0 michael cristofer biography,drama,romance united states english,french,german 0.4377510040160642
307 7321 7322 easy come, easy go 1967 7+ 0.4999999999999999 43% 0 0 1 0 0 john rich adventure,comedy,music united states english 0.3373493975903614
308 4164 4165 the dinner 2017 18+ 0.3918918918918918 46% 0 1 1 0 0 jay roach comedy united states english 0.41365461847389556
309 191 192 kapoor & sons 2016 13+ 0.8243243243243241 100% 1 0 0 0 0 shakun batra comedy,drama,romance india hindi 0.48594377510040154
310 310 311 the pixar story 2007 all 0.8378378378378377 86% 1 0 0 0 0 leslie iwerks documentary united states english 0.3092369477911646
311 7662 7663 seven girlfriends 1999 13+ 0.5675675675675674 50% 0 0 1 0 0 paul lazarus comedy,romance united states english 0.35341365461847385
312 3583 3584 blazing saddles 1974 18+ 0.8243243243243241 89% 0 1 0 0 0 mel brooks comedy,western united states english,german,yiddish 0.3293172690763052
313 4114 4115 black rock 2012 18+ 0.41891891891891886 52% 0 1 0 0 0 katie aselton horror,thriller united states english 0.2891566265060241
314 6224 6225 spread 2009 18+ 0.5675675675675674 21% 0 0 1 0 0 david mackenzie comedy,drama,romance united states english 0.34538152610441764
315 16452 16453 roving mars 2006 7+ 0.7567567567567566 70% 0 0 0 1 0 george butler documentary,short united states english 0.11646586345381527
316 550 551 the confirmation 2016 13+ 0.6486486486486486 91% 1 0 0 0 0 bob nelson comedy,drama canada english 0.36144578313253006
317 16329 16330 phineas and ferb the movie: across the 2nd dimension 2011 all 0.7837837837837837 100% 0 0 0 1 0 dan povenmire,jay lender,jeff 'swampy' marsh,kyle menke,robert hughes action,adventure,animation,comedy,family,musical,sci-fi united states english 0.2690763052208835
318 617 618 sweetheart 2019 13+ 0.554054054054054 94% 1 0 0 0 0 j.d. dillard adventure,drama,fantasy,horror,mystery,sci-fi,thriller united states english 0.285140562248996
319 0 1 inception 2010 13+ 0.9729729729729728 87% 1 0 0 0 0 christopher nolan action,adventure,sci-fi,thriller united kingdom,united states english,french,japanese 0.5502008032128514
320 4067 4068 legendary 2010 13+ 0.6216216216216215 19% 0 1 1 0 0 eric styles action,adventure,sci-fi,thriller china,united kingdom chinese,english 0.3253012048192771
321 9289 9290 the tenants 2006 18+ 0.4864864864864864 32% 0 0 1 0 0 danny green crime,drama,romance,thriller germany,united states english 0.3293172690763052
322 4046 4047 the alchemist cookbook 2016 18+ 0.4729729729729728 80% 0 1 1 0 0 joel potrykus comedy,drama,horror united states english 0.285140562248996
323 4823 4824 raising victor vargas 2002 18+ 0.7567567567567566 96% 0 0 1 0 0 peter sollett drama,romance france,united states english,spanish 0.3092369477911646
324 836 837 a gray state 2017 18+ 0.6216216216216215 100% 1 0 0 0 0 erik nelson documentary united states english 0.3293172690763052
325 7621 7622 man about town 2006 18+ 0.5270270270270269 38% 0 0 1 0 0 mike binder comedy,drama united states english 0.34136546184738953
326 1070 1071 girl on the third floor 2019 18+ 0.40540540540540526 81% 1 0 0 0 0 travis stevens drama,horror,mystery united states english 0.3293172690763052
327 4650 4651 house of games 1987 18+ 0.7702702702702701 96% 0 0 1 0 0 david mamet crime,thriller united states english 0.3654618473895582
328 7365 7366 galore 2013 7+ 0.6216216216216215 50% 0 0 1 0 0 rhys graham drama australia english 0.36947791164658633
329 674 675 into the forest 2016 18+ 0.5675675675675674 76% 1 0 0 0 0 patricia rozema drama,horror,sci-fi,thriller canada english 0.36144578313253006
330 5362 5363 foxy brown 1974 18+ 0.6621621621621621 60% 0 0 1 0 0 jack hill action,crime,thriller united states english 0.3253012048192771
331 6519 6520 baar baar dekho 2016 7+ 0.4999999999999999 43% 0 0 1 0 0 nitya mehra comedy,drama,romance,sci-fi india english,hindi 0.5220883534136546
332 166 167 the master 2012 18+ 0.7567567567567566 85% 1 0 0 0 0 paul thomas anderson drama united states english,filipino 0.5100401606425702

2641
train.csv Normal file

File diff suppressed because it is too large Load Diff

331
valid.csv Normal file
View File

@ -0,0 +1,331 @@
Unnamed: 0,ID,Title,Year,Age,IMDb,Rotten Tomatoes,Netflix,Hulu,Prime Video,Disney+,Type,Directors,Genres,Country,Language,Runtime
7305,7306,the pebble and the penguin,1995,all,0.5405405405405403,11%,0,0,1,0,0,"don bluth,gary goldman","adventure,animation,comedy,family,musical","ireland,united states",english,0.25301204819277107
3932,3933,the x files: i want to believe,2008,13+,0.581081081081081,31%,0,1,0,0,0,chris carter,"crime,drama,horror,mystery,sci-fi,thriller","canada,united states","czech,english,russian",0.37349397590361444
6771,6772,walt before mickey,2015,all,0.581081081081081,17%,0,0,1,0,0,khoa le,"biography,drama",united states,"english,spanish",0.38554216867469876
6260,6261,bonhoeffer,2003,16+,0.7567567567567566,71%,0,0,1,0,0,eric till,"crime,drama,history,thriller,war","canada,germany,united states",english,0.3092369477911646
833,834,he named me malala,2015,13+,0.7162162162162161,72%,1,0,0,0,0,davis guggenheim,documentary,"united arab emirates,united states",english,0.3092369477911646
3845,3846,food evolution,2017,7+,0.7297297297297296,100%,0,1,0,0,0,scott hamilton kennedy,documentary,united states,english,0.3253012048192771
126,127,bad genius,2017,13+,0.8108108108108105,100%,1,0,0,0,0,nattawut poonpiriya,"comedy,crime,drama,thriller",thailand,"english,thai",0.47791164658634533
5021,5022,next,2007,13+,0.6216216216216215,28%,0,0,1,0,0,lee tamahori,"action,sci-fi,thriller",united states,"english,french,german,serbian",0.34136546184738953
6720,6721,the coca-cola kid,1985,18+,0.5945945945945945,44%,0,0,1,0,0,dusan makavejev,"comedy,drama",australia,english,0.34939759036144574
5541,5542,the golden child,1986,13+,0.5945945945945945,26%,0,0,1,0,0,michael ritchie,"action,adventure,comedy,fantasy,mystery",united states,english,0.3333333333333333
1386,1387,chernobyl diaries,2012,18+,0.4594594594594593,19%,1,0,0,0,0,bradley parker,"horror,mystery,thriller",united states,"english,russian,ukrainian",0.3012048192771084
259,260,ip man 3,2015,13+,0.7432432432432431,78%,1,0,0,0,0,wilson yip,"action,biography,drama","china,hong kong","cantonese,english",0.37751004016064255
6350,6351,voice from the stone,2017,18+,0.4864864864864864,38%,0,0,1,0,0,eric d. howell,"drama,mystery,thriller","italy,united states","english,italian",0.3333333333333333
6209,6210,ooops! noah is gone...,2015,all,0.5675675675675674,36%,0,0,1,0,0,"sean mccormack,toby genkel","adventure,animation,comedy","belgium,germany,ireland,luxembourg,united states",english,0.3052208835341365
16247,16248,wreck-it ralph,2012,7+,0.8243243243243241,87%,0,0,0,1,0,rich moore,"adventure,animation,comedy,family,fantasy",united states,english,0.36144578313253006
949,950,like father,2018,18+,0.6081081081081079,49%,1,0,0,0,0,lauren miller rogen,"comedy,drama",united states,english,0.34939759036144574
4969,4970,the man in the iron mask,1998,13+,0.6621621621621621,33%,0,0,1,0,0,randall wallace,"action,adventure,drama","france,united states","english,italian",0.48594377510040154
98,99,corpse bride,2005,7+,0.7702702702702701,84%,1,0,0,0,0,"mike johnson,tim burton","animation,drama,family,fantasy,musical,romance","united kingdom,united states",english,0.2650602409638554
256,257,the meyerowitz stories (new and selected),2017,18+,0.7162162162162161,93%,1,0,0,0,0,noah baumbach,"comedy,drama",united states,english,0.4056224899598393
111,112,pk,2014,13+,0.8783783783783781,76%,1,0,0,0,0,rajkumar hirani,"comedy,drama,fantasy",india,"english,hindi,kurdish,persian,urdu",0.570281124497992
16231,16232,captain america: the winter soldier,2014,13+,0.8243243243243241,90%,0,0,0,1,0,"anthony russo,joe russo","action,adventure,sci-fi,thriller",united states,"english,french",0.502008032128514
548,549,the bill murray stories: life lessons learned from a mythical man,2018,18+,0.7297297297297296,95%,1,0,0,0,0,tommy avallone,documentary,united states,english,0.23694779116465864
4052,4053,running with the devil,2019,18+,0.5135135135135135,25%,0,1,0,0,0,jason cabell,"crime,drama,thriller","colombia,united states","english,spanish",0.35742971887550196
5404,5405,chi-raq,2015,18+,0.554054054054054,82%,0,0,1,0,0,spike lee,"comedy,crime,drama,musical",united states,english,0.46586345381526095
5317,5318,soaked in bleach,2015,13+,0.7837837837837837,30%,0,0,1,0,0,benjamin statler,"crime,documentary",united states,english,0.31726907630522083
5028,5029,flight of the butterflies,2012,all,0.7162162162162161,100%,0,0,1,0,0,mike slee,"biography,documentary,drama,family","canada,mexico,united kingdom",english,0.11646586345381527
5136,5137,return of the hero,2018,13+,0.6621621621621621,80%,0,0,1,0,0,laurent tirard,"comedy,history","belgium,france",french,0.31726907630522083
5871,5872,phantom detective,2016,13+,0.635135135135135,83%,0,0,1,0,0,sung-hee jo,"action,crime,drama,mystery,thriller",south korea,korean,0.4618473895582329
169,170,the breadwinner,2017,13+,0.8243243243243241,95%,1,0,0,0,0,nora twomey,"animation,drama,family,war","canada,india,ireland,luxembourg,philippines,united kingdom,united states",english,0.3333333333333333
1596,1597,swearnet: the movie,2014,18+,0.581081081081081,20%,1,0,0,0,0,warren p. sonoda,comedy,canada,english,0.4056224899598393
5944,5945,hands of the ripper,1971,18+,0.6216216216216215,86%,0,0,1,0,0,peter sasdy,horror,united kingdom,english,0.2971887550200803
9415,9416,teen wolf too,1987,7+,0.24324324324324317,7%,0,0,1,0,0,christopher leitch,"comedy,fantasy",united states,english,0.3373493975903614
6880,6881,all summers end,2017,16+,0.5945945945945945,20%,0,0,1,0,0,kyle wilamowski,"drama,romance",united states,english,0.31726907630522083
5382,5383,skin,2009,13+,0.7162162162162161,84%,0,0,1,0,0,guy nattiv,"biography,crime,drama,romance","brazil,canada,china,united states",english,0.429718875502008
16365,16366,adventures in babysitting,2016,all,0.5945945945945945,100%,0,0,0,1,0,chris columbus,"adventure,comedy,crime,romance",united states,english,0.3654618473895582
3865,3866,leap year,2010,7+,0.6621621621621621,23%,0,1,0,0,0,anand tucker,"comedy,romance","ireland,united states","english,ukrainian",0.35742971887550196
639,640,dear john,2010,13+,0.635135135135135,29%,1,0,0,0,0,lasse hallström,"drama,romance,war",united states,english,0.38955823293172687
386,387,heneral luna,2015,18+,0.8108108108108105,71%,1,0,0,0,0,jerrold tarog,"action,biography,history,war",philippines,"english,filipino,spanish,tagalog",0.429718875502008
7095,7096,weightless,2017,18+,0.554054054054054,64%,0,0,1,0,0,terrence malick,"drama,music,romance",united states,english,0.4738955823293173
7855,7856,escape and evasion,2019,16+,0.43243243243243235,80%,0,0,1,0,0,storm ashwood,"drama,war","australia,united arab emirates",english,0.3253012048192771
5060,5061,savior,1998,18+,0.7702702702702701,56%,0,0,1,0,0,predrag antonijevic,"drama,war",united states,"english,french,serbian",0.36947791164658633
16243,16244,frozen,2013,7+,0.7837837837837837,90%,0,0,0,1,0,"chris buck,jennifer lee","adventure,animation,comedy,family,fantasy,musical",united states,"english,norwegian",0.3654618473895582
930,931,a bad moms christmas,2017,18+,0.5405405405405403,31%,1,0,0,0,0,"jon lucas,scott moore",comedy,"china,united states","english,japanese",0.37349397590361444
4477,4478,the lincoln lawyer,2011,18+,0.7702702702702701,84%,0,0,1,0,0,brad furman,"crime,drama,thriller",united states,english,0.429718875502008
16325,16326,the santa clause,1994,7+,0.6621621621621621,71%,0,0,0,1,0,john pasquin,"comedy,drama,family,fantasy","canada,united states","english,spanish",0.34538152610441764
3990,3991,conan the barbarian,2011,18+,0.4864864864864864,25%,0,1,1,0,0,john milius,"action,adventure,fantasy","mexico,spain,united states",english,0.4738955823293173
3860,3861,toni morrison: the pieces i am,2019,13+,0.7432432432432431,97%,0,1,0,0,0,timothy greenfield-sanders,documentary,united states,english,0.4377510040160642
3911,3912,haze,2017,18+,0.581081081081081,88%,0,1,1,0,0,david burkman,"drama,thriller",united states,english,0.38152610441767065
1038,1039,the student,2016,13+,0.7162162162162161,87%,1,0,1,0,0,steven r. monroe,thriller,united states,english,0.31726907630522083
16249,16250,onward,2020,7+,0.7972972972972971,88%,0,0,0,1,0,dan scanlon,"adventure,animation,comedy,family,fantasy",united states,english,0.3654618473895582
6104,6105,big bad mama,1974,18+,0.5675675675675674,71%,0,0,1,0,0,steve carver,"action,comedy,crime,drama",united states,english,0.2931726907630522
16222,16223,toy story 3,2010,all,0.9054054054054053,98%,0,0,0,1,0,lee unkrich,"adventure,animation,comedy,family,fantasy",united states,"english,spanish",0.36947791164658633
3993,3994,madea's big happy family,2011,13+,0.41891891891891886,37%,0,1,1,0,0,tyler perry,"comedy,drama",united states,english,0.38152610441767065
3988,3989,damsel,2018,18+,0.5270270270270269,67%,0,1,0,0,0,"david zellner,nathan zellner","adventure,comedy,crime,drama,romance,western",united states,english,0.40963855421686746
1374,1375,"game over, man!",2018,18+,0.5135135135135135,9%,1,0,0,0,0,kyle newacheck,"action,comedy",united states,english,0.36144578313253006
6368,6369,canadian bacon,1995,7+,0.5945945945945945,14%,0,0,1,0,0,michael moore,comedy,"canada,united states",english,0.321285140562249
3582,3583,"i, tonya",2017,18+,0.7972972972972971,89%,0,1,0,0,0,craig gillespie,"biography,comedy,drama,sport","qatar,united kingdom,united states",english,0.4337349397590361
3811,3812,hellbound: hellraiser ii,1988,18+,0.6621621621621621,52%,0,1,1,0,0,tony randel,"horror,thriller",united kingdom,english,0.34538152610441764
4470,4471,the cabinet of dr. caligari,1920,7+,0.8783783783783781,100%,0,0,1,0,0,robert wiene,"fantasy,horror,mystery,thriller",germany,german,0.2610441767068273
740,741,morris from america,2016,18+,0.6216216216216215,88%,1,0,0,0,0,chad hartigan,"comedy,drama,romance","germany,united states","english,german",0.321285140562249
6953,6954,antboy,2013,7+,0.4864864864864864,43%,0,0,1,0,0,ask hasselbalch,"adventure,comedy,family",denmark,danish,0.2650602409638554
832,833,candy jar,2018,13+,0.5675675675675674,71%,1,0,0,0,0,ben shelton,comedy,united states,english,0.3253012048192771
4004,4005,uglydolls,2019,7+,0.44594594594594583,27%,0,1,0,0,0,kelly asbury,"adventure,animation,comedy,family,fantasy,musical","canada,china,thailand,united states",english,0.3052208835341365
6740,6741,genius on hold,2013,7+,0.7297297297297296,83%,0,0,1,0,0,gregory marquette,documentary,united states,english,0.321285140562249
6129,6130,the double,2011,13+,0.581081081081081,21%,0,0,1,0,0,akira kurosawa,"drama,history,war","japan,united states",japanese,0.6787148594377509
5623,5624,pathology,2008,18+,0.5945945945945945,45%,0,0,1,0,0,marc schölermann,"crime,thriller",united states,english,0.3373493975903614
157,158,elizabeth,1998,18+,0.7837837837837837,82%,1,0,0,0,0,shekhar kapur,"biography,drama,history",united kingdom,"english,french",0.4538152610441767
16536,16537,pocahontas ii: journey to a new world,1998,all,0.44594594594594583,29%,0,0,0,1,0,"bradley raymond,tom ellery","adventure,animation,drama,family,musical,romance",united states,english,0.24497991967871485
306,307,1922,2017,18+,0.635135135135135,90%,1,0,0,0,0,zak hilditch,"crime,drama,horror,mystery,thriller",united states,english,0.3654618473895582
4929,4930,casting by,2012,16+,0.8108108108108105,94%,0,0,1,0,0,tom donahue,"biography,documentary",united states,english,0.3132530120481927
7161,7162,the sand,2015,16+,0.29729729729729715,40%,0,0,1,0,0,isaac gabaeff,"comedy,horror,sci-fi,thriller",united states,english,0.2931726907630522
4738,4739,these final hours,2014,18+,0.689189189189189,84%,0,0,1,0,0,zak hilditch,"drama,sci-fi,thriller",australia,english,0.3052208835341365
4807,4808,the gathering storm,2002,all,0.7972972972972971,83%,0,0,1,0,0,richard loncraine,"biography,drama,history","united kingdom,united states",english,0.34136546184738953
4812,4813,journey's end,2017,18+,0.6756756756756754,92%,0,0,1,0,0,saul dibb,"drama,war",united kingdom,"english,french,german",0.38554216867469876
614,615,son of a gun,2014,18+,0.6621621621621621,62%,1,0,0,0,0,julius avery,"action,crime,drama,thriller","australia,canada,united kingdom","english,serbo-croatian",0.38955823293172687
5246,5247,puncture,2011,18+,0.7027027027027025,52%,0,0,1,0,0,"adam kassen,mark kassen","biography,drama",united states,"english,french",0.35742971887550196
7259,7260,abattoir,2016,18+,0.3783783783783783,38%,0,0,1,0,0,darren lynn bousman,"horror,mystery,thriller",united states,english,0.34939759036144574
732,733,the keeping hours,2017,13+,0.635135135135135,80%,1,0,0,0,0,karen moncrieff,"drama,fantasy,horror,mystery,thriller",united states,english,0.321285140562249
3610,3611,creed ii,2018,13+,0.7432432432432431,84%,0,1,1,0,0,steven caple jr.,"drama,sport",united states,"english,russian,sign languages",0.47791164658634533
1314,1315,rugrats go wild,2003,7+,0.5405405405405403,39%,1,0,0,0,0,"john eng,norton virgien","adventure,animation,comedy,family,fantasy,musical",united states,english,0.27710843373493976
3139,3140,black rose,2014,18+,0.12162162162162157,22%,1,0,0,0,0,alexander nevsky,"action,crime,drama","russia,united states","english,russian",0.2891566265060241
7211,7212,nostalgia,2018,18+,0.5270270270270269,39%,0,0,1,0,0,andrei tarkovsky,drama,"italy,soviet union","italian,russian",0.45783132530120474
621,622,the other side of the wind,2018,18+,0.7027027027027025,83%,1,0,0,0,0,orson welles,drama,"france,iran,united states","english,german",0.4457831325301204
5877,5878,stop-loss,2008,18+,0.6486486486486486,65%,0,0,1,0,0,kimberly peirce,"drama,war",united states,english,0.4056224899598393
6420,6421,low down,2014,18+,0.6081081081081079,50%,0,0,1,0,0,jeff preiss,"biography,drama,music",united states,english,0.41365461847389556
329,330,bombshell: the hedy lamarr story,2018,13+,0.7837837837837837,96%,1,0,0,0,0,alexandra dean,"biography,documentary,history,war",united states,"english,german",0.3092369477911646
43,44,ip man,2008,18+,0.8648648648648647,85%,1,0,0,0,0,wilson yip,"action,adventure,biography,drama,history","china,hong kong","cantonese,japanese,mandarin",0.38152610441767065
5271,5272,streetdance 3d,2010,13+,0.581081081081081,76%,0,0,1,0,0,"dania pasquini,max giwa","drama,music,romance",united kingdom,english,0.34939759036144574
4957,4958,what's in a name,2012,7+,0.7702702702702701,71%,0,0,1,0,0,elva nelsonhayes,drama,united states,english,0.3293172690763052
9912,9913,dangerously close,1986,18+,0.5270270270270269,10%,0,0,1,0,0,albert pyun,"action,crime,thriller",united states,english,0.3373493975903614
143,144,mudbound,2017,18+,0.7837837837837837,97%,1,0,0,0,0,dee rees,"drama,war",united states,english,0.49397590361445776
5456,5457,friday the 13th part 2,1981,18+,0.6081081081081079,28%,0,0,1,0,0,steve miner,"horror,mystery,thriller",united states,english,0.3052208835341365
16376,16377,3 men and a baby,1987,7+,0.5945945945945945,75%,0,0,0,1,0,leonard nimoy,"comedy,drama,family","france,united states",english,0.3654618473895582
3792,3793,free willy,1993,7+,0.5945945945945945,58%,0,1,0,0,0,simon wincer,"adventure,drama,family","france,mexico,united states",english,0.4056224899598393
4609,4610,a most wanted man,2014,18+,0.7027027027027025,87%,0,0,1,0,0,anton corbijn,"crime,drama,thriller","germany,united kingdom,united states","arabic,english,turkish",0.4457831325301204
4654,4655,priceless,2006,13+,0.7297297297297296,82%,0,0,1,0,0,pierre salvadori,"comedy,romance",france,"english,french",0.38152610441767065
5072,5073,tiger zinda hai,2017,7+,0.5945945945945945,73%,0,0,1,0,0,ali abbas zafar,"action,adventure,thriller",india,"english,hindi",0.6024096385542168
3771,3772,lords of chaos,2019,18+,0.6621621621621621,74%,0,1,0,0,0,jonas åkerlund,"biography,drama,horror,music,thriller","norway,sweden,united kingdom",english,0.429718875502008
5770,5771,the 51st state,2001,18+,0.635135135135135,26%,0,0,1,0,0,ronny yu,"action,comedy,crime,thriller","canada,united kingdom",english,0.3293172690763052
7766,7767,carpool,1996,7+,0.4594594594594593,13%,0,0,1,0,0,arthur hiller,comedy,united states,english,0.3132530120481927
3754,3755,sea of shadows,2019,13+,0.7567567567567566,94%,0,1,0,0,0,"matthew podolsky,richard ladkani,sean bogle","crime,documentary,history","australia,austria,germany,united states","english,spanish",0.37349397590361444
917,918,automata,2014,18+,0.6081081081081079,30%,1,0,0,0,0,gabe ibáñez,"action,drama,sci-fi,thriller","bulgaria,spain",english,0.393574297188755
234,235,american factory,2019,16+,0.7837837837837837,97%,1,0,0,0,0,"julia reichert,steven bognar",documentary,united states,"english,mandarin",0.3975903614457831
6355,6356,the motel life,2012,18+,0.581081081081081,70%,0,0,1,0,0,"alan polsky,gabe polsky","animation,drama,mystery,thriller",united states,english,0.2971887550200803
5282,5283,pantani: the accidental death of a cyclist,2014,7+,0.7297297297297296,84%,0,0,1,0,0,james erskine,"biography,documentary,sport",united kingdom,"english,french,italian",0.34136546184738953
8132,8133,chattahoochee,1989,18+,0.6486486486486486,14%,0,0,1,0,0,mick jackson,"biography,drama",united states,english,0.34538152610441764
5710,5711,honor flight,2012,7+,0.9189189189189189,80%,0,0,1,0,0,dan hayes,"documentary,history,war",united states,english,0.285140562248996
6463,6464,the calling,2014,18+,0.5675675675675674,51%,0,0,1,0,0,jason stone,"drama,thriller","canada,united kingdom,united states","english,latin",0.38955823293172687
4788,4789,igby goes down,2002,18+,0.7162162162162161,76%,0,0,1,0,0,burr steers,"comedy,drama",united states,english,0.34939759036144574
997,998,the b-side: elsa dorfman's portrait photography,2017,18+,0.6756756756756754,97%,1,0,0,0,0,errol morris,documentary,united states,english,0.2610441767068273
5093,5094,detainment,2018,18+,0.7837837837837837,83%,0,0,1,0,0,vincent lambe,"crime,drama,short","ireland,united kingdom",english,0.07630522088353413
3667,3668,jesus camp,2006,13+,0.7837837837837837,87%,0,1,0,0,0,"heidi ewing,rachel grady",documentary,united states,english,0.2931726907630522
667,668,aval,2017,13+,0.7027027027027025,100%,1,0,0,0,0,milind rau,horror,india,"hindi,tamil,telugu",0.5060240963855421
3836,3837,waiting to exhale,1995,18+,0.581081081081081,56%,0,1,0,0,0,forest whitaker,"comedy,drama,romance",united states,english,0.4538152610441767
4101,4102,half magic,2018,18+,0.40540540540540526,55%,0,1,0,0,0,heather graham,"comedy,romance",united states,"english,spanish",0.3333333333333333
5147,5148,the way of the gun,2000,18+,0.689189189189189,45%,0,0,1,0,0,christopher mcquarrie,"action,crime,drama,thriller",united states,"english,spanish",0.4337349397590361
16240,16241,rogue one: a star wars story,2016,13+,0.8378378378378377,84%,0,0,0,1,0,gareth edwards,"action,adventure,sci-fi",united states,english,0.4899598393574297
8714,8715,the congressman,2016,18+,0.635135135135135,33%,0,0,1,0,0,"jared martin,robert mrazek",drama,united states,english,0.34939759036144574
1,2,the matrix,1999,18+,0.9594594594594592,87%,1,0,0,0,0,"lana wachowski,lilly wachowski","action,sci-fi",united states,english,0.502008032128514
6031,6032,seberg,2019,18+,0.5135135135135135,34%,0,0,1,0,0,benedict andrews,"biography,drama,thriller","united kingdom,united states","english,french",0.3654618473895582
216,217,enemy,2013,18+,0.7162162162162161,71%,1,0,0,0,0,denis villeneuve,"drama,mystery,thriller","canada,france,spain",english,0.321285140562249
1485,1486,vincent n roxxy,2016,18+,0.5270270270270269,41%,1,0,0,0,0,gary michael schultz,"crime,drama,thriller",united states,english,0.3654618473895582
700,701,in the shadow of the moon,2019,18+,0.6216216216216215,59%,1,0,0,0,0,jim mickle,"crime,mystery,sci-fi,thriller","canada,united states",english,0.41767068273092367
4648,4649,climax,2018,18+,0.7432432432432431,69%,0,0,1,0,0,gaspar noé,"drama,horror,music,thriller","belgium,france","english,french",0.34538152610441764
980,981,the bleeding edge,2018,16+,0.8243243243243241,100%,1,0,1,0,0,kirby dick,documentary,"australia,united states",english,0.35341365461847385
749,750,heartbreakers,2001,13+,0.6216216216216215,53%,1,0,0,0,0,david mirkin,"comedy,crime,romance",united states,"english,russian",0.4497991967871486
5674,5675,downriver,2015,18+,0.6216216216216215,90%,0,0,1,0,0,grant scicluna,"drama,thriller",australia,english,0.35341365461847385
6945,6946,just write,1997,13+,0.635135135135135,50%,0,0,1,0,0,andrew gallerani,"comedy,romance",united states,english,0.3654618473895582
5791,5792,"wild horse, wild ride",2012,7+,0.8108108108108105,81%,0,0,1,0,0,"alex dawson,greg gricus","documentary,western",united states,english,0.38152610441767065
16562,16563,cinderella ii: dreams come true,2002,all,0.4594594594594593,11%,0,0,0,1,0,john kafka,"animation,family,fantasy,romance",united states,english,0.24899598393574296
16391,16392,science fair,2018,7+,0.7837837837837837,97%,0,0,0,1,0,"cristina costantini,darren foster",documentary,united states,english,0.31726907630522083
6172,6173,"if it's tuesday, this must be belgium",1969,all,0.635135135135135,60%,0,0,1,0,0,mel stuart,"adventure,comedy,romance",united states,english,0.34939759036144574
3937,3938,friday the 13th: the final chapter,1984,18+,0.5945945945945945,20%,0,1,1,0,0,joseph zito,"horror,thriller",united states,english,0.321285140562249
733,734,kickboxer: retaliation,2018,18+,0.4594594594594593,92%,1,0,0,0,0,dimitri logothetis,"action,drama",united states,english,0.3975903614457831
6551,6552,phil spector,2013,18+,0.6216216216216215,49%,0,0,1,0,0,david mamet,"biography,drama,music",united states,english,0.3253012048192771
1429,1430,ek main aur ekk tu,2012,7+,0.5675675675675674,63%,1,0,0,0,0,shakun batra,"comedy,drama,romance",india,hindi,0.3975903614457831
3808,3809,southbound,2015,18+,0.581081081081081,80%,0,1,1,0,0,"chad villella,david bruckner,justin martinez,matt bettinelli-olpin,patrick horvath,radio silence,roxanne benjamin,tyler gillett","fantasy,horror,thriller",united states,english,0.3132530120481927
634,635,"to wong foo, thanks for everything! julie newmar",1995,13+,0.6756756756756754,41%,1,0,0,0,0,beeban kidron,"comedy,drama",united states,"english,french,italian",0.393574297188755
6652,6653,half of a yellow sun,2013,18+,0.6081081081081079,51%,0,0,1,0,0,biyi bandele,"drama,romance","nigeria,united kingdom",english,0.4016064257028112
16458,16459,the return of jafar,1994,all,0.581081081081081,33%,0,0,0,1,0,"alan zaslove,tad stones,toby shelton","adventure,animation,comedy,family,fantasy,musical,romance",united states,english,0.23293172690763048
6860,6861,cherry tree lane,2010,18+,0.44594594594594583,61%,0,0,1,0,0,paul andrew williams,"horror,thriller",united kingdom,english,0.2650602409638554
5141,5142,animal factory,2000,18+,0.6756756756756754,82%,0,0,1,0,0,steve buscemi,"crime,drama",united states,english,0.3333333333333333
5663,5664,gringo,2018,18+,0.6081081081081079,40%,0,0,1,0,0,nash edgerton,"action,comedy,crime,drama","australia,mexico,united states","english,french,spanish,yoruba",0.4016064257028112
635,636,elizabeth: the golden age,2007,13+,0.7027027027027025,34%,1,0,0,0,0,shekhar kapur,"biography,drama,history,war","france,germany,united kingdom,united states","english,spanish,swedish",0.41365461847389556
314,315,obvious child,2014,18+,0.7027027027027025,90%,1,0,0,0,0,gillian robespierre,"comedy,drama,romance",united states,english,0.2931726907630522
3784,3785,bad company,1972,7+,0.7297297297297296,92%,0,1,1,0,0,wes craven,"horror,thriller",united states,english,0.2931726907630522
5366,5367,the boy,2016,13+,0.5945945945945945,30%,0,0,1,0,0,william brent bell,"horror,mystery,thriller","canada,china,united states",english,0.34538152610441764
4705,4706,waco: the rules of engagement,1997,13+,0.8513513513513513,88%,0,0,1,0,0,william gazecki,"documentary,history",united states,english,0.502008032128514
16565,16566,belle's magical world,1998,all,0.5135135135135135,17%,0,0,0,1,0,"barbara dourmaskin-case,bob kline,burt medall,cullen blaine,dale case,daniel de la vega,mitch rochon,rick leon","animation,comedy,family,fantasy,musical,romance",united states,english,0.3253012048192771
7203,7204,begum jaan,2017,18+,0.5405405405405403,10%,0,0,1,0,0,srijit mukherji,"action,drama,history",india,hindi,0.4698795180722891
6553,6554,streamers,1983,18+,0.6621621621621621,56%,0,0,1,0,0,robert altman,"crime,drama,war",united states,english,0.429718875502008
4464,4465,the lighthouse,2019,18+,0.8108108108108105,90%,0,0,1,0,0,robert eggers,"drama,fantasy,horror,mystery","canada,united states",english,0.393574297188755
895,896,the cloverfield paradox,2018,13+,0.5270270270270269,16%,1,0,0,0,0,julius onah,"adventure,drama,horror,mystery,sci-fi,thriller",united states,"english,german,mandarin",0.3654618473895582
4874,4875,gimme danger,2016,18+,0.7567567567567566,94%,0,0,1,0,0,jim jarmusch,"documentary,music",united states,english,0.38955823293172687
3751,3752,shirley valentine,1989,18+,0.7567567567567566,73%,0,1,0,0,0,lewis gilbert,"comedy,drama,romance","united kingdom,united states",english,0.38955823293172687
1388,1389,the sea of trees,2016,13+,0.6081081081081079,15%,1,0,0,0,0,gus van sant,"drama,fantasy,mystery",united states,"english,japanese",0.3975903614457831
524,525,mission control: the unsung heroes of apollo,2017,7+,0.7972972972972971,100%,1,0,0,0,0,david fairhead,"documentary,history","united kingdom,united states",english,0.36144578313253006
16428,16429,recess: school's out,2001,all,0.6756756756756754,60%,0,0,0,1,0,chuck sheetz,"animation,comedy,family","japan,united states",english,0.285140562248996
714,715,the kissing booth,2018,16+,0.6081081081081079,17%,1,0,0,0,0,vince marcello,"comedy,romance","united kingdom,united states",english,0.37751004016064255
7589,7590,postal,2007,18+,0.3918918918918918,9%,0,0,1,0,0,uwe boll,"action,comedy,crime,thriller","canada,germany,united states",english,0.35742971887550196
3733,3734,along with the gods: the two worlds,2017,7+,0.7702702702702701,63%,0,1,0,0,0,yong-hwa kim,"action,drama,fantasy",south korea,korean,0.5140562248995983
53,54,back to the future part ii,1989,7+,0.8378378378378377,65%,1,0,0,0,0,robert zemeckis,"adventure,comedy,sci-fi",united states,english,0.38955823293172687
16378,16379,the incredible journey,1963,all,0.7432432432432431,89%,0,0,0,1,0,fletcher markle,"adventure,drama,family","canada,united states",english,0.27710843373493976
1352,1353,sex and the city 2,2010,18+,0.3918918918918918,16%,1,0,0,0,0,michael patrick king,"comedy,drama,romance",united states,"arabic,english",0.5421686746987951
3992,3993,cantinflas,2014,7+,0.6621621621621621,45%,0,1,1,0,0,sebastian del amo,"biography,comedy,drama,romance",mexico,"english,spanish",0.3654618473895582
4130,4131,assassination tango,2002,18+,0.5675675675675674,47%,0,1,1,0,0,robert duvall,"crime,drama,romance,thriller","argentina,united states","english,german,spanish",0.41365461847389556
6829,6830,milton's secret,2016,7+,0.5675675675675674,38%,0,0,1,0,0,barnet bain,"drama,family",canada,english,0.3092369477911646
16221,16222,coco,2017,7+,0.9189189189189189,97%,0,0,0,1,0,"adrian molina,lee unkrich","adventure,animation,family,fantasy,music,mystery",united states,"english,spanish",0.37751004016064255
246,247,the wolf's call,2019,16+,0.7162162162162161,92%,1,0,0,0,0,antonin baudry,"action,adventure,sci-fi,thriller",france,french,0.41767068273092367
16342,16343,bedknobs and broomsticks,1971,all,0.7432432432432431,65%,0,0,0,1,0,"robert stevenson,ward kimball","adventure,animation,comedy,family,fantasy,musical",united states,"english,german",0.4257028112449799
4865,4866,the flowers of war,2011,18+,0.8108108108108105,41%,0,0,1,0,0,yimou zhang,"drama,history,romance,war","china,hong kong","english,japanese,mandarin,shanghainese",0.5421686746987951
185,186,the crying game,1992,18+,0.7567567567567566,94%,1,0,0,0,0,neil jordan,"crime,drama,romance,thriller","japan,united kingdom",english,0.4056224899598393
6812,6813,bleeding steel,2017,18+,0.4864864864864864,22%,0,0,1,0,0,leo zhang,"action,adventure,sci-fi,thriller","china,hong kong","english,mandarin",0.393574297188755
908,909,emo the musical,2017,16+,0.6081081081081079,75%,1,0,0,0,0,neil triffett,"comedy,music,musical",australia,english,0.3333333333333333
7400,7401,despite the falling snow,2016,13+,0.5675675675675674,9%,0,0,1,0,0,shamim sarif,"drama,mystery,romance,thriller","canada,united kingdom",english,0.3293172690763052
4948,4949,the ghazi attack,2017,7+,0.8108108108108105,60%,0,0,1,0,0,sankalp reddy,"action,thriller,war",india,"hindi,telugu",0.4216867469879518
4447,4448,lady bird,2017,18+,0.7837837837837837,99%,0,0,1,0,0,greta gerwig,"comedy,drama",united states,"english,spanish",0.3333333333333333
3736,3737,lo and behold: reveries of the connected world,2016,13+,0.7297297297297296,93%,0,1,0,0,0,werner herzog,documentary,united states,english,0.34939759036144574
6234,6235,the big sleep,1978,18+,0.5675675675675674,67%,0,0,1,0,0,howard hawks,"crime,film-noir,mystery,thriller",united states,english,0.41365461847389556
4873,4874,fahrenheit 11/9,2018,18+,0.7162162162162161,81%,0,0,1,0,0,michael moore,documentary,united states,english,0.4698795180722891
5197,5198,woman on the run,1950,7+,0.7702702702702701,83%,0,0,1,0,0,norman foster,"crime,drama,film-noir,thriller",united states,english,0.2650602409638554
704,705,brooklyn's finest,2009,18+,0.689189189189189,44%,1,0,1,0,0,antoine fuqua,"crime,drama,thriller",united states,english,0.48594377510040154
16218,16219,up,2009,7+,0.8918918918918917,98%,0,0,0,1,0,"bob peterson,pete docter","adventure,animation,comedy,family",united states,english,0.34136546184738953
46,47,the pursuit of happyness,2006,13+,0.8648648648648647,67%,1,0,0,0,0,gabriele muccino,"biography,drama",united states,"cantonese,english",0.4257028112449799
184,185,always be my maybe,2019,13+,0.7027027027027025,89%,1,0,0,0,0,nahnatchka khan,"comedy,romance",united states,english,0.36144578313253006
5465,5466,what richard did,2012,18+,0.635135135135135,91%,0,0,1,0,0,lenny abrahamson,drama,ireland,"english,irish",0.3092369477911646
16311,16312,the great mouse detective,1986,all,0.7567567567567566,79%,0,0,0,1,0,"burny mattinson,david michener,john musker,ron clements","adventure,animation,family,musical,mystery",united states,"english,french,german,italian",0.25301204819277107
6351,6352,brain dead,1990,18+,0.5945945945945945,17%,0,0,1,0,0,adam simon,"horror,mystery,sci-fi,thriller",united states,english,0.2971887550200803
7607,7608,vidal sassoon: the movie,2010,7+,0.6621621621621621,60%,0,0,1,0,0,craig teper,documentary,united states,english,0.31726907630522083
6937,6938,kill me later,2001,18+,0.635135135135135,26%,0,0,1,0,0,dana lustig,"crime,drama,thriller",united states,english,0.3132530120481927
3619,3620,ninja scroll,1993,18+,0.8513513513513513,93%,0,1,0,0,0,yoshiaki kawajiri,"action,adventure,animation,fantasy,thriller",japan,japanese,0.3333333333333333
867,868,ali wong: hard knock wife,2018,18+,0.7837837837837837,100%,1,0,0,0,0,jay karas,comedy,united states,english,0.21285140562248994
3898,3899,"nico, 1988",2017,18+,0.689189189189189,92%,0,1,0,0,0,susanna nicchiarelli,"biography,drama,music","belgium,italy","czech,english,french,german",0.3293172690763052
16561,16562,blank check,1994,7+,0.4999999999999999,9%,0,0,0,1,0,rupert wainwright,"comedy,crime,family",united states,english,0.3293172690763052
16379,16380,the love bug,1968,all,0.6621621621621621,76%,0,0,0,1,0,robert stevenson,"comedy,family,sport",united states,"cantonese,english,spanish",0.38955823293172687
16522,16523,the haunted mansion,2003,7+,0.4594594594594593,14%,0,0,0,1,0,rob minkoff,"comedy,family,fantasy,horror,mystery",united states,english,0.35341365461847385
769,770,tremors 2: aftershocks,1996,13+,0.5945945945945945,63%,1,0,0,0,0,s.s. wilson,"action,comedy,horror,sci-fi,thriller",united states,"english,spanish",0.35742971887550196
3980,3981,digging for fire,2015,18+,0.5675675675675674,66%,0,1,1,0,0,joe swanberg,"comedy,drama",united states,"english,spanish",0.2971887550200803
4645,4646,the pink panther strikes again,1976,7+,0.7567567567567566,80%,0,0,1,0,0,blake edwards,"comedy,crime","united kingdom,united states",english,0.36947791164658633
624,625,let it fall: los angeles 1982-1992,2017,18+,0.8243243243243241,100%,1,0,0,0,0,john ridley,"documentary,history",united states,english,0.5341365461847389
4487,4488,escape from new york,1981,18+,0.7567567567567566,86%,0,0,1,0,0,john carpenter,"action,adventure,sci-fi",united states,english,0.35341365461847385
16637,16638,inspector gadget 2,2003,all,0.24324324324324317,40%,0,0,0,1,0,alex zamm,"action,comedy,crime,family,sci-fi",united states,english,0.3132530120481927
5833,5834,felix and meira,2015,18+,0.689189189189189,78%,0,0,1,0,0,maxime giroux,"drama,romance",canada,"english,french,hebrew,italian,spanish,yiddish",0.37751004016064255
8374,8375,under the bed,2012,18+,0.40540540540540526,40%,0,0,1,0,0,steven c. miller,"drama,horror",united states,english,0.3052208835341365
6056,6057,stone of destiny,2008,7+,0.7027027027027025,53%,0,0,1,0,0,charles martin smith,"adventure,comedy,crime,drama,history","canada,united kingdom",english,0.34136546184738953
2478,2479,sextuplets,2019,16+,0.3783783783783783,14%,1,0,0,0,0,michael tiddes,comedy,united states,english,0.34538152610441764
1298,1299,tad the lost explorer and the secret of king midas,2017,7+,0.6216216216216215,29%,1,0,0,0,0,"david alonso,enrique gato","adventure,animation,comedy,family,fantasy","spain,united states","english,spanish",0.2971887550200803
4846,4847,support your local sheriff,1969,all,0.7972972972972971,73%,0,0,1,0,0,burt kennedy,"comedy,romance,western",united states,english,0.3253012048192771
16317,16318,fantasia 2000,1999,all,0.7567567567567566,81%,0,0,0,1,0,"don hahn,eric goldberg,francis glebas,gaëtan brizzi,hendel butoy,james algar,paul brizzi,pixote hunt","animation,comedy,family,fantasy,music",united states,english,0.2570281124497992
5370,5371,the private lives of pippa lee,2009,18+,0.6486486486486486,69%,0,0,1,0,0,rebecca miller,"comedy,drama,romance",united states,english,0.34939759036144574
4586,4587,air force one,1997,18+,0.6621621621621621,76%,0,0,1,0,0,wolfgang petersen,"action,drama,thriller","germany,united states","english,russian",0.4538152610441767
1253,1254,3 generations,2016,13+,0.581081081081081,32%,1,0,0,0,0,gaby dellal,drama,united states,"english,spanish",0.3253012048192771
2684,2685,i am vengeance,2018,18+,0.3648648648648647,38%,1,0,1,0,0,ross boyask,action,united kingdom,english,0.3253012048192771
6379,6380,fear x,2003,13+,0.5945945945945945,58%,0,0,1,0,0,nicolas winding refn,"drama,mystery,thriller","brazil,canada,denmark,united kingdom",english,0.321285140562249
974,975,war on everyone,2016,18+,0.5675675675675674,61%,1,0,0,0,0,john michael mcdonagh,"action,comedy,crime",united kingdom,"english,spanish",0.34939759036144574
16262,16263,togo,2019,7+,0.8783783783783781,91%,0,0,0,1,0,ericson core,"adventure,biography,drama,family,history",united states,english,0.40963855421686746
576,577,the angel,2018,18+,0.6756756756756754,75%,1,0,1,0,0,ariel vromen,"drama,thriller","israel,united states","arabic,english,hebrew,italian",0.41365461847389556
4637,4638,mcqueen,2018,18+,0.8378378378378377,99%,0,0,1,0,0,"ian bonhôte,peter ettedgui","biography,documentary",united kingdom,"english,french",0.4016064257028112
6408,6409,these girls,2005,18+,0.5270270270270269,73%,0,0,1,0,0,john hazlett,"comedy,drama",canada,english,0.3253012048192771
4569,4570,pretty in pink,1986,13+,0.7027027027027025,77%,0,0,1,0,0,howard deutch,"comedy,drama,romance",united states,english,0.34538152610441764
4773,4774,the panama papers,2018,13+,0.7567567567567566,100%,0,0,1,0,0,alex winter,documentary,united states,"english,icelandic,maltese,russian,spanish",0.34136546184738953
5047,5048,lila says,2005,18+,0.7162162162162161,68%,0,0,1,0,0,ziad doueiri,"crime,drama,romance","france,united kingdom","arabic,french",0.3132530120481927
2472,2473,poster boys,2017,13+,0.5270270270270269,33%,1,0,0,0,0,shreyas talpade,comedy,india,hindi,0.4698795180722891
4309,4310,ghost team,2016,13+,0.40540540540540526,11%,0,1,0,0,0,oliver irving,"comedy,thriller",united states,english,0.2891566265060241
16447,16448,the cat from outer space,1978,all,0.6081081081081079,67%,0,0,0,1,0,norman tokar,"comedy,family,sci-fi",united states,english,0.37349397590361444
16438,16439,descendants 3,2019,all,0.689189189189189,78%,0,0,0,1,0,kenny ortega,"adventure,family,musical",united states,english,0.38152610441767065
8615,8616,mvp: most valuable primate,2000,7+,0.3378378378378377,20%,0,0,1,0,0,robert vince,"comedy,family,sport","canada,united states",english,0.3293172690763052
16274,16275,thor: the dark world,2013,13+,0.7162162162162161,66%,0,0,0,1,0,alan taylor,"action,adventure,fantasy",united states,english,0.4056224899598393
5569,5570,sukiyaki western django,2007,18+,0.6216216216216215,56%,0,0,1,0,0,takashi miike,"action,western",japan,english,0.4417670682730923
6695,6696,new york doll,2005,13+,0.8243243243243241,90%,0,0,1,0,0,greg whiteley,"documentary,music",united states,english,0.2570281124497992
4070,4071,6 below: miracle on the mountain,2017,13+,0.554054054054054,22%,0,1,0,0,0,scott waugh,"adventure,biography,drama,sport,thriller",united states,english,0.34939759036144574
5616,5617,the foot fist way,2006,18+,0.635135135135135,54%,0,0,1,0,0,jody hill,comedy,united states,english,0.2971887550200803
6285,6286,the armor of light,2015,13+,0.689189189189189,96%,0,0,1,0,0,"abigail disney,kathleen hughes","documentary,news",united states,english,0.3092369477911646
16419,16420,fun and fancy free,1947,all,0.6756756756756754,67%,0,0,0,1,0,"bill roberts,hamilton luske,jack kinney,william morgan","adventure,animation,comedy,family,fantasy,musical,romance",united states,english,0.24899598393574296
1414,1415,the duel,2016,13+,0.5675675675675674,26%,1,0,1,0,0,kieran darcy-smith,"drama,western",united states,"english,spanish",0.3975903614457831
9398,9399,destiny turns on the radio,1995,18+,0.3918918918918918,17%,0,0,1,0,0,jack baran,"comedy,crime,fantasy",united states,english,0.3654618473895582
6797,6798,grand theft parsons,2004,13+,0.5945945945945945,46%,0,0,1,0,0,david caffrey,"adventure,comedy,drama","united kingdom,united states",english,0.3092369477911646
5133,5134,the exorcist iii,1990,18+,0.6486486486486486,59%,0,0,1,0,0,william peter blatty,"drama,horror,mystery",united states,english,0.3975903614457831
16232,16233,aladdin,1992,all,0.8648648648648647,95%,0,0,0,1,0,guy ritchie,"adventure,family,fantasy,musical,romance",united states,"arabic,english",0.4698795180722891
743,744,sweet virginia,2017,18+,0.6216216216216215,78%,1,0,0,0,0,jamie m. dagg,"drama,thriller",canada,english,0.3293172690763052
5298,5299,nina forever,2015,18+,0.5405405405405403,97%,0,0,1,0,0,"ben blaine,chris blaine","comedy,drama,horror,romance",united kingdom,english,0.34939759036144574
16283,16284,"the chronicles of narnia: the lion, the witch and the wardrobe",2005,7+,0.7162162162162161,76%,0,0,0,1,0,andrew adamson,"adventure,family,fantasy","united kingdom,united states","brazilian sign language,english,german",0.5301204819277108
3849,3850,dumb: the story of big brother magazine,2017,18+,0.7567567567567566,100%,0,1,0,0,0,patrick o'dell,documentary,united states,english,0.2730923694779116
51,52,the artist,2011,13+,0.8513513513513513,95%,1,0,0,0,0,michel hazanavicius,"comedy,drama,romance","belgium,france,united states","english,french",0.35742971887550196
4954,4955,badrinath ki dulhania,2017,7+,0.6216216216216215,80%,0,0,1,0,0,shashank khaitan,"comedy,drama,romance",india,hindi,0.5140562248995983
527,528,kaabil,2017,18+,0.7432432432432431,70%,1,0,0,0,0,sanjay gupta,"action,drama,thriller",india,hindi,0.5140562248995983
16369,16370,oliver & company,1988,all,0.689189189189189,51%,0,0,0,1,0,george scribner,"adventure,animation,comedy,family,musical",united states,english,0.25301204819277107
739,740,6 days,2017,18+,0.6216216216216215,63%,1,0,0,0,0,toa fraser,"action,drama,history,thriller","new zealand,united kingdom","arabic,english,persian",0.3333333333333333
324,325,my girl,1991,7+,0.7162162162162161,53%,1,0,0,0,0,howard zieff,"comedy,drama,family,romance",united states,english,0.3654618473895582
6496,6497,bickford shmeckler's cool ideas,2006,18+,0.554054054054054,50%,0,0,1,0,0,scott lew,"comedy,romance",united states,english,0.2730923694779116
3655,3656,bend it like beckham,2002,13+,0.6756756756756754,85%,0,1,0,0,0,gurinder chadha,"comedy,drama,romance,sport","germany,united kingdom,united states","english,german,hindi,punjabi",0.4056224899598393
16408,16409,the santa clause 2,2002,all,0.5405405405405403,56%,0,0,0,1,0,michael lembeck,"comedy,family,fantasy","canada,united states",english,0.37349397590361444
2913,2914,viking destiny,2018,18+,0.3513513513513513,13%,1,0,0,0,0,david l.g. hughes,"action,adventure,fantasy","belgium,united kingdom",english,0.321285140562249
125,126,the princess and the frog,2009,all,0.7432432432432431,85%,1,0,0,1,0,"john musker,ron clements","adventure,animation,comedy,family,fantasy,musical,romance",united states,"english,french",0.34538152610441764
4545,4546,moonstruck,1987,7+,0.7432432432432431,93%,0,0,1,0,0,norman jewison,"comedy,drama,romance",united states,"english,italian,latin",0.3654618473895582
254,255,get him to the greek,2010,18+,0.6486486486486486,72%,1,0,0,0,0,nicholas stoller,"comedy,music",united states,english,0.393574297188755
16305,16306,cars 3,2017,all,0.689189189189189,70%,0,0,0,1,0,brian fee,"adventure,animation,comedy,family,sport",united states,english,0.3654618473895582
7180,7181,they wait,2007,18+,0.4999999999999999,40%,0,0,1,0,0,ernie barbarash,"horror,mystery,thriller",canada,english,0.35341365461847385
691,692,horse girl,2020,18+,0.581081081081081,72%,1,0,0,0,0,jeff baena,"drama,mystery,thriller",united states,english,0.36947791164658633
1063,1064,the trust,2016,18+,0.5135135135135135,63%,1,0,0,0,0,dan bush,"crime,horror,mystery,thriller",united states,english,0.321285140562249
16418,16419,because of winn-dixie,2005,7+,0.635135135135135,55%,0,0,0,1,0,wayne wang,"comedy,drama,family",united states,english,0.38152610441767065
1128,1129,acts of vengeance,2017,18+,0.554054054054054,55%,1,0,0,0,0,isaac florentine,"action,drama,thriller","bulgaria,united states",english,0.3052208835341365
11793,11794,bela lugosi meets a brooklyn gorilla,1952,all,0.28378378378378377,29%,0,0,1,0,0,william beaudine,"comedy,horror,sci-fi",united states,english,0.25301204819277107
8408,8409,cook-off!,2007,18+,0.3378378378378377,14%,0,0,1,0,0,"cathryn michon,guy shalem",comedy,united states,english,0.34939759036144574
7213,7214,ktown cowboys,2015,18+,0.689189189189189,33%,0,0,1,0,0,daniel park,"comedy,drama",united states,english,0.28112449799196787
5252,5253,shade,2003,18+,0.635135135135135,67%,0,0,1,0,0,damian nieman,"crime,thriller",united states,english,0.36144578313253006
163,164,the autopsy of jane doe,2016,18+,0.7027027027027025,86%,1,0,0,0,0,andré øvredal,"horror,mystery,thriller",united kingdom,english,0.3012048192771084
1381,1382,rolling papers,2015,18+,0.6216216216216215,58%,1,0,0,0,0,mitch dickman,"biography,documentary,news","united states,uruguay","english,spanish",0.2730923694779116
5735,5736,blue chips,1994,13+,0.6216216216216215,37%,0,0,1,0,0,william friedkin,"drama,sport",united states,english,0.38955823293172687
274,275,olympus has fallen,2013,18+,0.6621621621621621,49%,1,0,0,0,0,antoine fuqua,"action,thriller",united states,"english,korean",0.4337349397590361
4622,4623,what maisie knew,2013,18+,0.7837837837837837,86%,0,0,1,0,0,"david siegel,scott mcgehee",drama,united states,english,0.35341365461847385
5928,5929,peterloo,2018,13+,0.6621621621621621,66%,0,0,1,0,0,mike leigh,"drama,history",united kingdom,english,0.57429718875502
3796,3797,destroyer,2018,18+,0.6216216216216215,74%,0,1,0,0,0,karyn kusama,"action,crime,drama,mystery,thriller",united states,english,0.4417670682730923
16354,16355,pollyanna,1960,all,0.7837837837837837,86%,0,0,0,1,0,david swift,"comedy,drama,family",united states,english,0.49397590361445776
6376,6377,hatchet ii,2010,18+,0.5270270270270269,40%,0,0,1,0,0,adam green,"action,comedy,horror,thriller",united states,english,0.2971887550200803
7873,7874,mi america,2015,18+,0.6486486486486486,50%,0,0,1,0,0,robert fontaine,"crime,drama",united states,"english,spanish",0.31726907630522083
4890,4891,the falcon and the snowman,1985,18+,0.7027027027027025,81%,0,0,1,0,0,john schlesinger,"biography,crime,drama,thriller","mexico,united kingdom,united states",english,0.4819277108433735
4598,4599,rab ne bana di jodi,2008,7+,0.7567567567567566,78%,0,0,1,0,0,aditya chopra,"comedy,drama,music,romance",india,hindi,0.6265060240963854
6986,6987,redemption road,2011,13+,0.554054054054054,57%,0,0,1,0,0,york alec shackleton,"action,adventure,thriller,western",united states,english,0.321285140562249
6651,6652,the dark backward,1991,18+,0.5675675675675674,45%,0,0,1,0,0,adam rifkin,comedy,united states,english,0.36144578313253006
25,26,ex machina,2015,18+,0.8243243243243241,92%,1,0,0,0,0,alex garland,"drama,mystery,sci-fi,thriller","united kingdom,united states",english,0.38955823293172687
1375,1376,the same blood,2019,18+,0.5945945945945945,100%,1,0,0,0,0,miguel cohan,"drama,mystery,thriller","argentina,united states",spanish,0.40963855421686746
4541,4542,the boondock saints,1999,18+,0.8378378378378377,22%,0,0,1,0,0,troy duffy,"action,crime,thriller","canada,united states","english,latin,papiamento,russian,spanish",0.38955823293172687
5383,5384,fritz the cat,1972,18+,0.635135135135135,58%,0,0,1,0,0,ralph bakshi,"animation,comedy,drama",united states,"english,yiddish",0.2690763052208835
3762,3763,odd thomas,2013,13+,0.7027027027027025,38%,0,1,1,0,0,stephen sommers,"comedy,fantasy,horror,mystery,romance,thriller","united kingdom,united states",english,0.35742971887550196
988,989,clive davis: the soundtrack of our lives,2017,13+,0.7837837837837837,80%,1,0,0,0,0,chris perkel,documentary,united states,english,0.4497991967871486
7024,7025,gehenna: where death lives,2016,18+,0.44594594594594583,50%,0,0,1,0,0,hiroshi katagiri,"horror,mystery,thriller","japan,united states",english,0.37751004016064255
1511,1512,backtrack,2015,18+,0.581081081081081,30%,1,0,0,0,0,michael petroni,"drama,fantasy,mystery,thriller","australia,canada,united arab emirates,united kingdom",english,0.31726907630522083
7334,7335,harbinger down,2015,18+,0.3918918918918918,43%,0,0,1,0,0,alec gillis,"horror,sci-fi",united states,english,0.285140562248996
8331,8332,wild horses,2015,18+,0.43243243243243235,17%,0,0,1,0,0,robert duvall,"crime,drama,western",united states,english,0.35742971887550196
918,919,a little chaos,2015,18+,0.6621621621621621,48%,1,0,0,0,0,alan rickman,"drama,romance",united kingdom,english,0.4056224899598393
16297,16298,pete's dragon,2016,7+,0.689189189189189,88%,0,0,0,1,0,david lowery,"action,adventure,comedy,drama,family,fantasy",united states,english,0.3654618473895582
115,116,zindagi na milegi dobara,2011,7+,0.8783783783783781,91%,1,0,0,0,0,zoya akhtar,"comedy,drama",india,"english,hindi,japanese,spanish",0.5783132530120482
954,955,the bounty hunter,2010,13+,0.5405405405405403,12%,1,0,0,0,0,andy tennant,"action,comedy,romance",united states,"english,ukrainian",0.3975903614457831
7153,7154,an american affair,2008,18+,0.6216216216216215,16%,0,0,1,0,0,william olsson,drama,united states,english,0.3293172690763052
1451,1452,the week of,2018,13+,0.4729729729729728,27%,1,0,0,0,0,robert smigel,comedy,united states,english,0.4216867469879518
768,769,cult of chucky,2017,18+,0.4864864864864864,78%,1,0,0,0,0,don mancini,"comedy,fantasy,horror,thriller",united states,english,0.321285140562249
5601,5602,father's day,2011,18+,0.5945945945945945,80%,0,0,1,0,0,george a. romero,"comedy,fantasy,horror",united states,english,0.4377510040160642
140,141,locke,2014,18+,0.7432432432432431,91%,1,0,0,0,0,steven knight,drama,"united kingdom,united states",english,0.2971887550200803
3962,3963,the beach bum,2019,18+,0.5270270270270269,56%,0,1,0,0,0,harmony korine,comedy,"france,switzerland,united kingdom,united states","english,spanish",0.3373493975903614
6938,6939,strange wilderness,2008,18+,0.4999999999999999,2%,0,0,1,0,0,fred wolf,"adventure,comedy",united states,english,0.3052208835341365
5514,5515,species,1995,18+,0.5675675675675674,43%,0,0,1,0,0,roger donaldson,"action,horror,sci-fi,thriller",united states,english,0.38955823293172687
364,365,veronica,2017,18+,0.6216216216216215,88%,1,0,0,0,0,"bob odenkirk,brett ratner,elizabeth banks,griffin dunne,james duffy,james gunn,jonathan van tulleken,patrik forsberg,peter farrelly,rusty cundieff,steve carr,steven brill,will graham",comedy,united states,english,0.3333333333333333
8923,8924,6 ways to die,2015,18+,0.32432432432432423,40%,0,0,1,0,0,nadeem soumah,"crime,mystery,thriller",united states,english,0.36947791164658633
4915,4916,the kentucky fried movie,1977,18+,0.6621621621621621,81%,0,0,1,0,0,john landis,comedy,united states,"english,korean",0.2891566265060241
3724,3725,hearts beat loud,2018,13+,0.7162162162162161,91%,0,1,0,0,0,brett haley,"comedy,drama,music",united states,english,0.34538152610441764
4549,4550,fist of fury,1972,18+,0.7837837837837837,92%,0,0,1,0,0,wei lo,"action,drama,romance,thriller",hong kong,"cantonese,english,mandarin",0.38152610441767065
5959,5960,bone,1972,18+,0.7027027027027025,67%,0,0,1,0,0,larry cohen,"comedy,drama,thriller",united states,english,0.3373493975903614
6118,6119,all these sleepless nights,2016,18+,0.6756756756756754,69%,0,0,1,0,0,michal marczak,"documentary,drama","poland,united kingdom",polish,0.35742971887550196
4563,4564,dead ringers,1988,18+,0.7702702702702701,82%,0,0,1,0,0,david cronenberg,"drama,horror,thriller",canada,english,0.4216867469879518
3643,3644,romancing the stone,1984,7+,0.7162162162162161,84%,0,1,0,0,0,robert zemeckis,"action,adventure,comedy,romance","mexico,united states","english,french,spanish",0.38152610441767065
383,384,spectral,2016,13+,0.635135135135135,75%,1,0,0,0,0,nic mathieu,"action,adventure,mystery,sci-fi,thriller","hungary,united states","english,romanian,russian,slovenian",0.38554216867469876
15733,15734,freestyle,2010,13+,0.1621621621621621,22%,0,0,1,0,0,harley cokeliss,drama,united kingdom,english,0.3333333333333333
130,131,the squid and the whale,2005,18+,0.7702702702702701,92%,1,0,1,0,0,noah baumbach,"comedy,drama",united states,english,0.28112449799196787
4950,4951,the night eats the world,2018,16+,0.5945945945945945,85%,0,0,1,0,0,dominique rocher,"drama,horror,thriller",france,"english,french,norwegian",0.3293172690763052
9541,9542,amnesiac,2015,18+,0.3648648648648647,27%,0,0,1,0,0,michael polish,"drama,horror,mystery,thriller",united states,english,0.31726907630522083
3805,3806,star trek: the motion picture,1979,7+,0.6486486486486486,42%,0,1,1,0,0,robert wise,"adventure,mystery,sci-fi",united states,"english,klingon",0.48594377510040154
16424,16425,ruby bridges,1998,7+,0.7567567567567566,83%,0,0,0,1,0,euzhan palcy,"adventure,drama,family,fantasy",united states,english,0.34136546184738953
16560,16561,the brave little toaster to the rescue,1997,all,0.635135135135135,40%,0,0,0,1,0,"patrick a. ventura,robert c. ramirez","adventure,animation,family,fantasy",united states,"chinese,english,french,japanese,korean,mandarin",0.25301204819277107
3628,3629,star trek vi: the undiscovered country,1991,7+,0.7567567567567566,82%,0,1,1,0,0,nicholas meyer,"action,adventure,sci-fi,thriller",united states,"english,klingon",0.3975903614457831
3676,3677,i can only imagine,2018,7+,0.7702702702702701,61%,0,1,1,0,0,"andrew erwin,jon erwin","biography,drama,family,music",united states,english,0.3975903614457831
4825,4826,milius,2013,7+,0.7972972972972971,94%,0,0,1,0,0,"joey figueroa,zak knutson","biography,documentary,drama",united states,english,0.36947791164658633
4268,4269,the reunion,2011,13+,0.4864864864864864,8%,0,1,1,0,0,michael rosenbaum,comedy,"united kingdom,united states",english,0.3333333333333333
4647,4648,transsiberian,2008,18+,0.689189189189189,92%,0,0,1,0,0,brad anderson,"crime,drama,mystery,thriller","germany,lithuania,spain,united kingdom","english,french,mandarin,russian,spanish",0.4016064257028112
906,907,knock down the house,2019,7+,0.7162162162162161,100%,1,0,0,0,0,rachel lears,documentary,united states,english,0.3052208835341365
16484,16485,home alone 3,1997,7+,0.3918918918918918,29%,0,0,0,1,0,raja gosnell,"comedy,crime,family",united states,"english,polish",0.3654618473895582
2625,2626,day of the dead: bloodline,2017,18+,0.24324324324324317,13%,1,0,0,0,0,hèctor hernández vicens,horror,"bulgaria,united states",english,0.31726907630522083
3794,3795,man on a ledge,2012,13+,0.6756756756756754,32%,0,1,1,0,0,asger leth,"action,adventure,crime,thriller",united states,"english,spanish",0.3654618473895582
7330,7331,tell your children,1936,7+,0.29729729729729715,39%,0,0,1,0,0,louis j. gasnier,"crime,drama",united states,english,0.22088353413654616
4584,4585,hellraiser,1987,18+,0.7297297297297296,70%,0,0,1,0,0,clive barker,"horror,thriller",united kingdom,english,0.3333333333333333
1 Unnamed: 0 ID Title Year Age IMDb Rotten Tomatoes Netflix Hulu Prime Video Disney+ Type Directors Genres Country Language Runtime
2 7305 7306 the pebble and the penguin 1995 all 0.5405405405405403 11% 0 0 1 0 0 don bluth,gary goldman adventure,animation,comedy,family,musical ireland,united states english 0.25301204819277107
3 3932 3933 the x files: i want to believe 2008 13+ 0.581081081081081 31% 0 1 0 0 0 chris carter crime,drama,horror,mystery,sci-fi,thriller canada,united states czech,english,russian 0.37349397590361444
4 6771 6772 walt before mickey 2015 all 0.581081081081081 17% 0 0 1 0 0 khoa le biography,drama united states english,spanish 0.38554216867469876
5 6260 6261 bonhoeffer 2003 16+ 0.7567567567567566 71% 0 0 1 0 0 eric till crime,drama,history,thriller,war canada,germany,united states english 0.3092369477911646
6 833 834 he named me malala 2015 13+ 0.7162162162162161 72% 1 0 0 0 0 davis guggenheim documentary united arab emirates,united states english 0.3092369477911646
7 3845 3846 food evolution 2017 7+ 0.7297297297297296 100% 0 1 0 0 0 scott hamilton kennedy documentary united states english 0.3253012048192771
8 126 127 bad genius 2017 13+ 0.8108108108108105 100% 1 0 0 0 0 nattawut poonpiriya comedy,crime,drama,thriller thailand english,thai 0.47791164658634533
9 5021 5022 next 2007 13+ 0.6216216216216215 28% 0 0 1 0 0 lee tamahori action,sci-fi,thriller united states english,french,german,serbian 0.34136546184738953
10 6720 6721 the coca-cola kid 1985 18+ 0.5945945945945945 44% 0 0 1 0 0 dusan makavejev comedy,drama australia english 0.34939759036144574
11 5541 5542 the golden child 1986 13+ 0.5945945945945945 26% 0 0 1 0 0 michael ritchie action,adventure,comedy,fantasy,mystery united states english 0.3333333333333333
12 1386 1387 chernobyl diaries 2012 18+ 0.4594594594594593 19% 1 0 0 0 0 bradley parker horror,mystery,thriller united states english,russian,ukrainian 0.3012048192771084
13 259 260 ip man 3 2015 13+ 0.7432432432432431 78% 1 0 0 0 0 wilson yip action,biography,drama china,hong kong cantonese,english 0.37751004016064255
14 6350 6351 voice from the stone 2017 18+ 0.4864864864864864 38% 0 0 1 0 0 eric d. howell drama,mystery,thriller italy,united states english,italian 0.3333333333333333
15 6209 6210 ooops! noah is gone... 2015 all 0.5675675675675674 36% 0 0 1 0 0 sean mccormack,toby genkel adventure,animation,comedy belgium,germany,ireland,luxembourg,united states english 0.3052208835341365
16 16247 16248 wreck-it ralph 2012 7+ 0.8243243243243241 87% 0 0 0 1 0 rich moore adventure,animation,comedy,family,fantasy united states english 0.36144578313253006
17 949 950 like father 2018 18+ 0.6081081081081079 49% 1 0 0 0 0 lauren miller rogen comedy,drama united states english 0.34939759036144574
18 4969 4970 the man in the iron mask 1998 13+ 0.6621621621621621 33% 0 0 1 0 0 randall wallace action,adventure,drama france,united states english,italian 0.48594377510040154
19 98 99 corpse bride 2005 7+ 0.7702702702702701 84% 1 0 0 0 0 mike johnson,tim burton animation,drama,family,fantasy,musical,romance united kingdom,united states english 0.2650602409638554
20 256 257 the meyerowitz stories (new and selected) 2017 18+ 0.7162162162162161 93% 1 0 0 0 0 noah baumbach comedy,drama united states english 0.4056224899598393
21 111 112 pk 2014 13+ 0.8783783783783781 76% 1 0 0 0 0 rajkumar hirani comedy,drama,fantasy india english,hindi,kurdish,persian,urdu 0.570281124497992
22 16231 16232 captain america: the winter soldier 2014 13+ 0.8243243243243241 90% 0 0 0 1 0 anthony russo,joe russo action,adventure,sci-fi,thriller united states english,french 0.502008032128514
23 548 549 the bill murray stories: life lessons learned from a mythical man 2018 18+ 0.7297297297297296 95% 1 0 0 0 0 tommy avallone documentary united states english 0.23694779116465864
24 4052 4053 running with the devil 2019 18+ 0.5135135135135135 25% 0 1 0 0 0 jason cabell crime,drama,thriller colombia,united states english,spanish 0.35742971887550196
25 5404 5405 chi-raq 2015 18+ 0.554054054054054 82% 0 0 1 0 0 spike lee comedy,crime,drama,musical united states english 0.46586345381526095
26 5317 5318 soaked in bleach 2015 13+ 0.7837837837837837 30% 0 0 1 0 0 benjamin statler crime,documentary united states english 0.31726907630522083
27 5028 5029 flight of the butterflies 2012 all 0.7162162162162161 100% 0 0 1 0 0 mike slee biography,documentary,drama,family canada,mexico,united kingdom english 0.11646586345381527
28 5136 5137 return of the hero 2018 13+ 0.6621621621621621 80% 0 0 1 0 0 laurent tirard comedy,history belgium,france french 0.31726907630522083
29 5871 5872 phantom detective 2016 13+ 0.635135135135135 83% 0 0 1 0 0 sung-hee jo action,crime,drama,mystery,thriller south korea korean 0.4618473895582329
30 169 170 the breadwinner 2017 13+ 0.8243243243243241 95% 1 0 0 0 0 nora twomey animation,drama,family,war canada,india,ireland,luxembourg,philippines,united kingdom,united states english 0.3333333333333333
31 1596 1597 swearnet: the movie 2014 18+ 0.581081081081081 20% 1 0 0 0 0 warren p. sonoda comedy canada english 0.4056224899598393
32 5944 5945 hands of the ripper 1971 18+ 0.6216216216216215 86% 0 0 1 0 0 peter sasdy horror united kingdom english 0.2971887550200803
33 9415 9416 teen wolf too 1987 7+ 0.24324324324324317 7% 0 0 1 0 0 christopher leitch comedy,fantasy united states english 0.3373493975903614
34 6880 6881 all summers end 2017 16+ 0.5945945945945945 20% 0 0 1 0 0 kyle wilamowski drama,romance united states english 0.31726907630522083
35 5382 5383 skin 2009 13+ 0.7162162162162161 84% 0 0 1 0 0 guy nattiv biography,crime,drama,romance brazil,canada,china,united states english 0.429718875502008
36 16365 16366 adventures in babysitting 2016 all 0.5945945945945945 100% 0 0 0 1 0 chris columbus adventure,comedy,crime,romance united states english 0.3654618473895582
37 3865 3866 leap year 2010 7+ 0.6621621621621621 23% 0 1 0 0 0 anand tucker comedy,romance ireland,united states english,ukrainian 0.35742971887550196
38 639 640 dear john 2010 13+ 0.635135135135135 29% 1 0 0 0 0 lasse hallström drama,romance,war united states english 0.38955823293172687
39 386 387 heneral luna 2015 18+ 0.8108108108108105 71% 1 0 0 0 0 jerrold tarog action,biography,history,war philippines english,filipino,spanish,tagalog 0.429718875502008
40 7095 7096 weightless 2017 18+ 0.554054054054054 64% 0 0 1 0 0 terrence malick drama,music,romance united states english 0.4738955823293173
41 7855 7856 escape and evasion 2019 16+ 0.43243243243243235 80% 0 0 1 0 0 storm ashwood drama,war australia,united arab emirates english 0.3253012048192771
42 5060 5061 savior 1998 18+ 0.7702702702702701 56% 0 0 1 0 0 predrag antonijevic drama,war united states english,french,serbian 0.36947791164658633
43 16243 16244 frozen 2013 7+ 0.7837837837837837 90% 0 0 0 1 0 chris buck,jennifer lee adventure,animation,comedy,family,fantasy,musical united states english,norwegian 0.3654618473895582
44 930 931 a bad moms christmas 2017 18+ 0.5405405405405403 31% 1 0 0 0 0 jon lucas,scott moore comedy china,united states english,japanese 0.37349397590361444
45 4477 4478 the lincoln lawyer 2011 18+ 0.7702702702702701 84% 0 0 1 0 0 brad furman crime,drama,thriller united states english 0.429718875502008
46 16325 16326 the santa clause 1994 7+ 0.6621621621621621 71% 0 0 0 1 0 john pasquin comedy,drama,family,fantasy canada,united states english,spanish 0.34538152610441764
47 3990 3991 conan the barbarian 2011 18+ 0.4864864864864864 25% 0 1 1 0 0 john milius action,adventure,fantasy mexico,spain,united states english 0.4738955823293173
48 3860 3861 toni morrison: the pieces i am 2019 13+ 0.7432432432432431 97% 0 1 0 0 0 timothy greenfield-sanders documentary united states english 0.4377510040160642
49 3911 3912 haze 2017 18+ 0.581081081081081 88% 0 1 1 0 0 david burkman drama,thriller united states english 0.38152610441767065
50 1038 1039 the student 2016 13+ 0.7162162162162161 87% 1 0 1 0 0 steven r. monroe thriller united states english 0.31726907630522083
51 16249 16250 onward 2020 7+ 0.7972972972972971 88% 0 0 0 1 0 dan scanlon adventure,animation,comedy,family,fantasy united states english 0.3654618473895582
52 6104 6105 big bad mama 1974 18+ 0.5675675675675674 71% 0 0 1 0 0 steve carver action,comedy,crime,drama united states english 0.2931726907630522
53 16222 16223 toy story 3 2010 all 0.9054054054054053 98% 0 0 0 1 0 lee unkrich adventure,animation,comedy,family,fantasy united states english,spanish 0.36947791164658633
54 3993 3994 madea's big happy family 2011 13+ 0.41891891891891886 37% 0 1 1 0 0 tyler perry comedy,drama united states english 0.38152610441767065
55 3988 3989 damsel 2018 18+ 0.5270270270270269 67% 0 1 0 0 0 david zellner,nathan zellner adventure,comedy,crime,drama,romance,western united states english 0.40963855421686746
56 1374 1375 game over, man! 2018 18+ 0.5135135135135135 9% 1 0 0 0 0 kyle newacheck action,comedy united states english 0.36144578313253006
57 6368 6369 canadian bacon 1995 7+ 0.5945945945945945 14% 0 0 1 0 0 michael moore comedy canada,united states english 0.321285140562249
58 3582 3583 i, tonya 2017 18+ 0.7972972972972971 89% 0 1 0 0 0 craig gillespie biography,comedy,drama,sport qatar,united kingdom,united states english 0.4337349397590361
59 3811 3812 hellbound: hellraiser ii 1988 18+ 0.6621621621621621 52% 0 1 1 0 0 tony randel horror,thriller united kingdom english 0.34538152610441764
60 4470 4471 the cabinet of dr. caligari 1920 7+ 0.8783783783783781 100% 0 0 1 0 0 robert wiene fantasy,horror,mystery,thriller germany german 0.2610441767068273
61 740 741 morris from america 2016 18+ 0.6216216216216215 88% 1 0 0 0 0 chad hartigan comedy,drama,romance germany,united states english,german 0.321285140562249
62 6953 6954 antboy 2013 7+ 0.4864864864864864 43% 0 0 1 0 0 ask hasselbalch adventure,comedy,family denmark danish 0.2650602409638554
63 832 833 candy jar 2018 13+ 0.5675675675675674 71% 1 0 0 0 0 ben shelton comedy united states english 0.3253012048192771
64 4004 4005 uglydolls 2019 7+ 0.44594594594594583 27% 0 1 0 0 0 kelly asbury adventure,animation,comedy,family,fantasy,musical canada,china,thailand,united states english 0.3052208835341365
65 6740 6741 genius on hold 2013 7+ 0.7297297297297296 83% 0 0 1 0 0 gregory marquette documentary united states english 0.321285140562249
66 6129 6130 the double 2011 13+ 0.581081081081081 21% 0 0 1 0 0 akira kurosawa drama,history,war japan,united states japanese 0.6787148594377509
67 5623 5624 pathology 2008 18+ 0.5945945945945945 45% 0 0 1 0 0 marc schölermann crime,thriller united states english 0.3373493975903614
68 157 158 elizabeth 1998 18+ 0.7837837837837837 82% 1 0 0 0 0 shekhar kapur biography,drama,history united kingdom english,french 0.4538152610441767
69 16536 16537 pocahontas ii: journey to a new world 1998 all 0.44594594594594583 29% 0 0 0 1 0 bradley raymond,tom ellery adventure,animation,drama,family,musical,romance united states english 0.24497991967871485
70 306 307 1922 2017 18+ 0.635135135135135 90% 1 0 0 0 0 zak hilditch crime,drama,horror,mystery,thriller united states english 0.3654618473895582
71 4929 4930 casting by 2012 16+ 0.8108108108108105 94% 0 0 1 0 0 tom donahue biography,documentary united states english 0.3132530120481927
72 7161 7162 the sand 2015 16+ 0.29729729729729715 40% 0 0 1 0 0 isaac gabaeff comedy,horror,sci-fi,thriller united states english 0.2931726907630522
73 4738 4739 these final hours 2014 18+ 0.689189189189189 84% 0 0 1 0 0 zak hilditch drama,sci-fi,thriller australia english 0.3052208835341365
74 4807 4808 the gathering storm 2002 all 0.7972972972972971 83% 0 0 1 0 0 richard loncraine biography,drama,history united kingdom,united states english 0.34136546184738953
75 4812 4813 journey's end 2017 18+ 0.6756756756756754 92% 0 0 1 0 0 saul dibb drama,war united kingdom english,french,german 0.38554216867469876
76 614 615 son of a gun 2014 18+ 0.6621621621621621 62% 1 0 0 0 0 julius avery action,crime,drama,thriller australia,canada,united kingdom english,serbo-croatian 0.38955823293172687
77 5246 5247 puncture 2011 18+ 0.7027027027027025 52% 0 0 1 0 0 adam kassen,mark kassen biography,drama united states english,french 0.35742971887550196
78 7259 7260 abattoir 2016 18+ 0.3783783783783783 38% 0 0 1 0 0 darren lynn bousman horror,mystery,thriller united states english 0.34939759036144574
79 732 733 the keeping hours 2017 13+ 0.635135135135135 80% 1 0 0 0 0 karen moncrieff drama,fantasy,horror,mystery,thriller united states english 0.321285140562249
80 3610 3611 creed ii 2018 13+ 0.7432432432432431 84% 0 1 1 0 0 steven caple jr. drama,sport united states english,russian,sign languages 0.47791164658634533
81 1314 1315 rugrats go wild 2003 7+ 0.5405405405405403 39% 1 0 0 0 0 john eng,norton virgien adventure,animation,comedy,family,fantasy,musical united states english 0.27710843373493976
82 3139 3140 black rose 2014 18+ 0.12162162162162157 22% 1 0 0 0 0 alexander nevsky action,crime,drama russia,united states english,russian 0.2891566265060241
83 7211 7212 nostalgia 2018 18+ 0.5270270270270269 39% 0 0 1 0 0 andrei tarkovsky drama italy,soviet union italian,russian 0.45783132530120474
84 621 622 the other side of the wind 2018 18+ 0.7027027027027025 83% 1 0 0 0 0 orson welles drama france,iran,united states english,german 0.4457831325301204
85 5877 5878 stop-loss 2008 18+ 0.6486486486486486 65% 0 0 1 0 0 kimberly peirce drama,war united states english 0.4056224899598393
86 6420 6421 low down 2014 18+ 0.6081081081081079 50% 0 0 1 0 0 jeff preiss biography,drama,music united states english 0.41365461847389556
87 329 330 bombshell: the hedy lamarr story 2018 13+ 0.7837837837837837 96% 1 0 0 0 0 alexandra dean biography,documentary,history,war united states english,german 0.3092369477911646
88 43 44 ip man 2008 18+ 0.8648648648648647 85% 1 0 0 0 0 wilson yip action,adventure,biography,drama,history china,hong kong cantonese,japanese,mandarin 0.38152610441767065
89 5271 5272 streetdance 3d 2010 13+ 0.581081081081081 76% 0 0 1 0 0 dania pasquini,max giwa drama,music,romance united kingdom english 0.34939759036144574
90 4957 4958 what's in a name 2012 7+ 0.7702702702702701 71% 0 0 1 0 0 elva nelsonhayes drama united states english 0.3293172690763052
91 9912 9913 dangerously close 1986 18+ 0.5270270270270269 10% 0 0 1 0 0 albert pyun action,crime,thriller united states english 0.3373493975903614
92 143 144 mudbound 2017 18+ 0.7837837837837837 97% 1 0 0 0 0 dee rees drama,war united states english 0.49397590361445776
93 5456 5457 friday the 13th part 2 1981 18+ 0.6081081081081079 28% 0 0 1 0 0 steve miner horror,mystery,thriller united states english 0.3052208835341365
94 16376 16377 3 men and a baby 1987 7+ 0.5945945945945945 75% 0 0 0 1 0 leonard nimoy comedy,drama,family france,united states english 0.3654618473895582
95 3792 3793 free willy 1993 7+ 0.5945945945945945 58% 0 1 0 0 0 simon wincer adventure,drama,family france,mexico,united states english 0.4056224899598393
96 4609 4610 a most wanted man 2014 18+ 0.7027027027027025 87% 0 0 1 0 0 anton corbijn crime,drama,thriller germany,united kingdom,united states arabic,english,turkish 0.4457831325301204
97 4654 4655 priceless 2006 13+ 0.7297297297297296 82% 0 0 1 0 0 pierre salvadori comedy,romance france english,french 0.38152610441767065
98 5072 5073 tiger zinda hai 2017 7+ 0.5945945945945945 73% 0 0 1 0 0 ali abbas zafar action,adventure,thriller india english,hindi 0.6024096385542168
99 3771 3772 lords of chaos 2019 18+ 0.6621621621621621 74% 0 1 0 0 0 jonas åkerlund biography,drama,horror,music,thriller norway,sweden,united kingdom english 0.429718875502008
100 5770 5771 the 51st state 2001 18+ 0.635135135135135 26% 0 0 1 0 0 ronny yu action,comedy,crime,thriller canada,united kingdom english 0.3293172690763052
101 7766 7767 carpool 1996 7+ 0.4594594594594593 13% 0 0 1 0 0 arthur hiller comedy united states english 0.3132530120481927
102 3754 3755 sea of shadows 2019 13+ 0.7567567567567566 94% 0 1 0 0 0 matthew podolsky,richard ladkani,sean bogle crime,documentary,history australia,austria,germany,united states english,spanish 0.37349397590361444
103 917 918 automata 2014 18+ 0.6081081081081079 30% 1 0 0 0 0 gabe ibáñez action,drama,sci-fi,thriller bulgaria,spain english 0.393574297188755
104 234 235 american factory 2019 16+ 0.7837837837837837 97% 1 0 0 0 0 julia reichert,steven bognar documentary united states english,mandarin 0.3975903614457831
105 6355 6356 the motel life 2012 18+ 0.581081081081081 70% 0 0 1 0 0 alan polsky,gabe polsky animation,drama,mystery,thriller united states english 0.2971887550200803
106 5282 5283 pantani: the accidental death of a cyclist 2014 7+ 0.7297297297297296 84% 0 0 1 0 0 james erskine biography,documentary,sport united kingdom english,french,italian 0.34136546184738953
107 8132 8133 chattahoochee 1989 18+ 0.6486486486486486 14% 0 0 1 0 0 mick jackson biography,drama united states english 0.34538152610441764
108 5710 5711 honor flight 2012 7+ 0.9189189189189189 80% 0 0 1 0 0 dan hayes documentary,history,war united states english 0.285140562248996
109 6463 6464 the calling 2014 18+ 0.5675675675675674 51% 0 0 1 0 0 jason stone drama,thriller canada,united kingdom,united states english,latin 0.38955823293172687
110 4788 4789 igby goes down 2002 18+ 0.7162162162162161 76% 0 0 1 0 0 burr steers comedy,drama united states english 0.34939759036144574
111 997 998 the b-side: elsa dorfman's portrait photography 2017 18+ 0.6756756756756754 97% 1 0 0 0 0 errol morris documentary united states english 0.2610441767068273
112 5093 5094 detainment 2018 18+ 0.7837837837837837 83% 0 0 1 0 0 vincent lambe crime,drama,short ireland,united kingdom english 0.07630522088353413
113 3667 3668 jesus camp 2006 13+ 0.7837837837837837 87% 0 1 0 0 0 heidi ewing,rachel grady documentary united states english 0.2931726907630522
114 667 668 aval 2017 13+ 0.7027027027027025 100% 1 0 0 0 0 milind rau horror india hindi,tamil,telugu 0.5060240963855421
115 3836 3837 waiting to exhale 1995 18+ 0.581081081081081 56% 0 1 0 0 0 forest whitaker comedy,drama,romance united states english 0.4538152610441767
116 4101 4102 half magic 2018 18+ 0.40540540540540526 55% 0 1 0 0 0 heather graham comedy,romance united states english,spanish 0.3333333333333333
117 5147 5148 the way of the gun 2000 18+ 0.689189189189189 45% 0 0 1 0 0 christopher mcquarrie action,crime,drama,thriller united states english,spanish 0.4337349397590361
118 16240 16241 rogue one: a star wars story 2016 13+ 0.8378378378378377 84% 0 0 0 1 0 gareth edwards action,adventure,sci-fi united states english 0.4899598393574297
119 8714 8715 the congressman 2016 18+ 0.635135135135135 33% 0 0 1 0 0 jared martin,robert mrazek drama united states english 0.34939759036144574
120 1 2 the matrix 1999 18+ 0.9594594594594592 87% 1 0 0 0 0 lana wachowski,lilly wachowski action,sci-fi united states english 0.502008032128514
121 6031 6032 seberg 2019 18+ 0.5135135135135135 34% 0 0 1 0 0 benedict andrews biography,drama,thriller united kingdom,united states english,french 0.3654618473895582
122 216 217 enemy 2013 18+ 0.7162162162162161 71% 1 0 0 0 0 denis villeneuve drama,mystery,thriller canada,france,spain english 0.321285140562249
123 1485 1486 vincent n roxxy 2016 18+ 0.5270270270270269 41% 1 0 0 0 0 gary michael schultz crime,drama,thriller united states english 0.3654618473895582
124 700 701 in the shadow of the moon 2019 18+ 0.6216216216216215 59% 1 0 0 0 0 jim mickle crime,mystery,sci-fi,thriller canada,united states english 0.41767068273092367
125 4648 4649 climax 2018 18+ 0.7432432432432431 69% 0 0 1 0 0 gaspar noé drama,horror,music,thriller belgium,france english,french 0.34538152610441764
126 980 981 the bleeding edge 2018 16+ 0.8243243243243241 100% 1 0 1 0 0 kirby dick documentary australia,united states english 0.35341365461847385
127 749 750 heartbreakers 2001 13+ 0.6216216216216215 53% 1 0 0 0 0 david mirkin comedy,crime,romance united states english,russian 0.4497991967871486
128 5674 5675 downriver 2015 18+ 0.6216216216216215 90% 0 0 1 0 0 grant scicluna drama,thriller australia english 0.35341365461847385
129 6945 6946 just write 1997 13+ 0.635135135135135 50% 0 0 1 0 0 andrew gallerani comedy,romance united states english 0.3654618473895582
130 5791 5792 wild horse, wild ride 2012 7+ 0.8108108108108105 81% 0 0 1 0 0 alex dawson,greg gricus documentary,western united states english 0.38152610441767065
131 16562 16563 cinderella ii: dreams come true 2002 all 0.4594594594594593 11% 0 0 0 1 0 john kafka animation,family,fantasy,romance united states english 0.24899598393574296
132 16391 16392 science fair 2018 7+ 0.7837837837837837 97% 0 0 0 1 0 cristina costantini,darren foster documentary united states english 0.31726907630522083
133 6172 6173 if it's tuesday, this must be belgium 1969 all 0.635135135135135 60% 0 0 1 0 0 mel stuart adventure,comedy,romance united states english 0.34939759036144574
134 3937 3938 friday the 13th: the final chapter 1984 18+ 0.5945945945945945 20% 0 1 1 0 0 joseph zito horror,thriller united states english 0.321285140562249
135 733 734 kickboxer: retaliation 2018 18+ 0.4594594594594593 92% 1 0 0 0 0 dimitri logothetis action,drama united states english 0.3975903614457831
136 6551 6552 phil spector 2013 18+ 0.6216216216216215 49% 0 0 1 0 0 david mamet biography,drama,music united states english 0.3253012048192771
137 1429 1430 ek main aur ekk tu 2012 7+ 0.5675675675675674 63% 1 0 0 0 0 shakun batra comedy,drama,romance india hindi 0.3975903614457831
138 3808 3809 southbound 2015 18+ 0.581081081081081 80% 0 1 1 0 0 chad villella,david bruckner,justin martinez,matt bettinelli-olpin,patrick horvath,radio silence,roxanne benjamin,tyler gillett fantasy,horror,thriller united states english 0.3132530120481927
139 634 635 to wong foo, thanks for everything! julie newmar 1995 13+ 0.6756756756756754 41% 1 0 0 0 0 beeban kidron comedy,drama united states english,french,italian 0.393574297188755
140 6652 6653 half of a yellow sun 2013 18+ 0.6081081081081079 51% 0 0 1 0 0 biyi bandele drama,romance nigeria,united kingdom english 0.4016064257028112
141 16458 16459 the return of jafar 1994 all 0.581081081081081 33% 0 0 0 1 0 alan zaslove,tad stones,toby shelton adventure,animation,comedy,family,fantasy,musical,romance united states english 0.23293172690763048
142 6860 6861 cherry tree lane 2010 18+ 0.44594594594594583 61% 0 0 1 0 0 paul andrew williams horror,thriller united kingdom english 0.2650602409638554
143 5141 5142 animal factory 2000 18+ 0.6756756756756754 82% 0 0 1 0 0 steve buscemi crime,drama united states english 0.3333333333333333
144 5663 5664 gringo 2018 18+ 0.6081081081081079 40% 0 0 1 0 0 nash edgerton action,comedy,crime,drama australia,mexico,united states english,french,spanish,yoruba 0.4016064257028112
145 635 636 elizabeth: the golden age 2007 13+ 0.7027027027027025 34% 1 0 0 0 0 shekhar kapur biography,drama,history,war france,germany,united kingdom,united states english,spanish,swedish 0.41365461847389556
146 314 315 obvious child 2014 18+ 0.7027027027027025 90% 1 0 0 0 0 gillian robespierre comedy,drama,romance united states english 0.2931726907630522
147 3784 3785 bad company 1972 7+ 0.7297297297297296 92% 0 1 1 0 0 wes craven horror,thriller united states english 0.2931726907630522
148 5366 5367 the boy 2016 13+ 0.5945945945945945 30% 0 0 1 0 0 william brent bell horror,mystery,thriller canada,china,united states english 0.34538152610441764
149 4705 4706 waco: the rules of engagement 1997 13+ 0.8513513513513513 88% 0 0 1 0 0 william gazecki documentary,history united states english 0.502008032128514
150 16565 16566 belle's magical world 1998 all 0.5135135135135135 17% 0 0 0 1 0 barbara dourmaskin-case,bob kline,burt medall,cullen blaine,dale case,daniel de la vega,mitch rochon,rick leon animation,comedy,family,fantasy,musical,romance united states english 0.3253012048192771
151 7203 7204 begum jaan 2017 18+ 0.5405405405405403 10% 0 0 1 0 0 srijit mukherji action,drama,history india hindi 0.4698795180722891
152 6553 6554 streamers 1983 18+ 0.6621621621621621 56% 0 0 1 0 0 robert altman crime,drama,war united states english 0.429718875502008
153 4464 4465 the lighthouse 2019 18+ 0.8108108108108105 90% 0 0 1 0 0 robert eggers drama,fantasy,horror,mystery canada,united states english 0.393574297188755
154 895 896 the cloverfield paradox 2018 13+ 0.5270270270270269 16% 1 0 0 0 0 julius onah adventure,drama,horror,mystery,sci-fi,thriller united states english,german,mandarin 0.3654618473895582
155 4874 4875 gimme danger 2016 18+ 0.7567567567567566 94% 0 0 1 0 0 jim jarmusch documentary,music united states english 0.38955823293172687
156 3751 3752 shirley valentine 1989 18+ 0.7567567567567566 73% 0 1 0 0 0 lewis gilbert comedy,drama,romance united kingdom,united states english 0.38955823293172687
157 1388 1389 the sea of trees 2016 13+ 0.6081081081081079 15% 1 0 0 0 0 gus van sant drama,fantasy,mystery united states english,japanese 0.3975903614457831
158 524 525 mission control: the unsung heroes of apollo 2017 7+ 0.7972972972972971 100% 1 0 0 0 0 david fairhead documentary,history united kingdom,united states english 0.36144578313253006
159 16428 16429 recess: school's out 2001 all 0.6756756756756754 60% 0 0 0 1 0 chuck sheetz animation,comedy,family japan,united states english 0.285140562248996
160 714 715 the kissing booth 2018 16+ 0.6081081081081079 17% 1 0 0 0 0 vince marcello comedy,romance united kingdom,united states english 0.37751004016064255
161 7589 7590 postal 2007 18+ 0.3918918918918918 9% 0 0 1 0 0 uwe boll action,comedy,crime,thriller canada,germany,united states english 0.35742971887550196
162 3733 3734 along with the gods: the two worlds 2017 7+ 0.7702702702702701 63% 0 1 0 0 0 yong-hwa kim action,drama,fantasy south korea korean 0.5140562248995983
163 53 54 back to the future part ii 1989 7+ 0.8378378378378377 65% 1 0 0 0 0 robert zemeckis adventure,comedy,sci-fi united states english 0.38955823293172687
164 16378 16379 the incredible journey 1963 all 0.7432432432432431 89% 0 0 0 1 0 fletcher markle adventure,drama,family canada,united states english 0.27710843373493976
165 1352 1353 sex and the city 2 2010 18+ 0.3918918918918918 16% 1 0 0 0 0 michael patrick king comedy,drama,romance united states arabic,english 0.5421686746987951
166 3992 3993 cantinflas 2014 7+ 0.6621621621621621 45% 0 1 1 0 0 sebastian del amo biography,comedy,drama,romance mexico english,spanish 0.3654618473895582
167 4130 4131 assassination tango 2002 18+ 0.5675675675675674 47% 0 1 1 0 0 robert duvall crime,drama,romance,thriller argentina,united states english,german,spanish 0.41365461847389556
168 6829 6830 milton's secret 2016 7+ 0.5675675675675674 38% 0 0 1 0 0 barnet bain drama,family canada english 0.3092369477911646
169 16221 16222 coco 2017 7+ 0.9189189189189189 97% 0 0 0 1 0 adrian molina,lee unkrich adventure,animation,family,fantasy,music,mystery united states english,spanish 0.37751004016064255
170 246 247 the wolf's call 2019 16+ 0.7162162162162161 92% 1 0 0 0 0 antonin baudry action,adventure,sci-fi,thriller france french 0.41767068273092367
171 16342 16343 bedknobs and broomsticks 1971 all 0.7432432432432431 65% 0 0 0 1 0 robert stevenson,ward kimball adventure,animation,comedy,family,fantasy,musical united states english,german 0.4257028112449799
172 4865 4866 the flowers of war 2011 18+ 0.8108108108108105 41% 0 0 1 0 0 yimou zhang drama,history,romance,war china,hong kong english,japanese,mandarin,shanghainese 0.5421686746987951
173 185 186 the crying game 1992 18+ 0.7567567567567566 94% 1 0 0 0 0 neil jordan crime,drama,romance,thriller japan,united kingdom english 0.4056224899598393
174 6812 6813 bleeding steel 2017 18+ 0.4864864864864864 22% 0 0 1 0 0 leo zhang action,adventure,sci-fi,thriller china,hong kong english,mandarin 0.393574297188755
175 908 909 emo the musical 2017 16+ 0.6081081081081079 75% 1 0 0 0 0 neil triffett comedy,music,musical australia english 0.3333333333333333
176 7400 7401 despite the falling snow 2016 13+ 0.5675675675675674 9% 0 0 1 0 0 shamim sarif drama,mystery,romance,thriller canada,united kingdom english 0.3293172690763052
177 4948 4949 the ghazi attack 2017 7+ 0.8108108108108105 60% 0 0 1 0 0 sankalp reddy action,thriller,war india hindi,telugu 0.4216867469879518
178 4447 4448 lady bird 2017 18+ 0.7837837837837837 99% 0 0 1 0 0 greta gerwig comedy,drama united states english,spanish 0.3333333333333333
179 3736 3737 lo and behold: reveries of the connected world 2016 13+ 0.7297297297297296 93% 0 1 0 0 0 werner herzog documentary united states english 0.34939759036144574
180 6234 6235 the big sleep 1978 18+ 0.5675675675675674 67% 0 0 1 0 0 howard hawks crime,film-noir,mystery,thriller united states english 0.41365461847389556
181 4873 4874 fahrenheit 11/9 2018 18+ 0.7162162162162161 81% 0 0 1 0 0 michael moore documentary united states english 0.4698795180722891
182 5197 5198 woman on the run 1950 7+ 0.7702702702702701 83% 0 0 1 0 0 norman foster crime,drama,film-noir,thriller united states english 0.2650602409638554
183 704 705 brooklyn's finest 2009 18+ 0.689189189189189 44% 1 0 1 0 0 antoine fuqua crime,drama,thriller united states english 0.48594377510040154
184 16218 16219 up 2009 7+ 0.8918918918918917 98% 0 0 0 1 0 bob peterson,pete docter adventure,animation,comedy,family united states english 0.34136546184738953
185 46 47 the pursuit of happyness 2006 13+ 0.8648648648648647 67% 1 0 0 0 0 gabriele muccino biography,drama united states cantonese,english 0.4257028112449799
186 184 185 always be my maybe 2019 13+ 0.7027027027027025 89% 1 0 0 0 0 nahnatchka khan comedy,romance united states english 0.36144578313253006
187 5465 5466 what richard did 2012 18+ 0.635135135135135 91% 0 0 1 0 0 lenny abrahamson drama ireland english,irish 0.3092369477911646
188 16311 16312 the great mouse detective 1986 all 0.7567567567567566 79% 0 0 0 1 0 burny mattinson,david michener,john musker,ron clements adventure,animation,family,musical,mystery united states english,french,german,italian 0.25301204819277107
189 6351 6352 brain dead 1990 18+ 0.5945945945945945 17% 0 0 1 0 0 adam simon horror,mystery,sci-fi,thriller united states english 0.2971887550200803
190 7607 7608 vidal sassoon: the movie 2010 7+ 0.6621621621621621 60% 0 0 1 0 0 craig teper documentary united states english 0.31726907630522083
191 6937 6938 kill me later 2001 18+ 0.635135135135135 26% 0 0 1 0 0 dana lustig crime,drama,thriller united states english 0.3132530120481927
192 3619 3620 ninja scroll 1993 18+ 0.8513513513513513 93% 0 1 0 0 0 yoshiaki kawajiri action,adventure,animation,fantasy,thriller japan japanese 0.3333333333333333
193 867 868 ali wong: hard knock wife 2018 18+ 0.7837837837837837 100% 1 0 0 0 0 jay karas comedy united states english 0.21285140562248994
194 3898 3899 nico, 1988 2017 18+ 0.689189189189189 92% 0 1 0 0 0 susanna nicchiarelli biography,drama,music belgium,italy czech,english,french,german 0.3293172690763052
195 16561 16562 blank check 1994 7+ 0.4999999999999999 9% 0 0 0 1 0 rupert wainwright comedy,crime,family united states english 0.3293172690763052
196 16379 16380 the love bug 1968 all 0.6621621621621621 76% 0 0 0 1 0 robert stevenson comedy,family,sport united states cantonese,english,spanish 0.38955823293172687
197 16522 16523 the haunted mansion 2003 7+ 0.4594594594594593 14% 0 0 0 1 0 rob minkoff comedy,family,fantasy,horror,mystery united states english 0.35341365461847385
198 769 770 tremors 2: aftershocks 1996 13+ 0.5945945945945945 63% 1 0 0 0 0 s.s. wilson action,comedy,horror,sci-fi,thriller united states english,spanish 0.35742971887550196
199 3980 3981 digging for fire 2015 18+ 0.5675675675675674 66% 0 1 1 0 0 joe swanberg comedy,drama united states english,spanish 0.2971887550200803
200 4645 4646 the pink panther strikes again 1976 7+ 0.7567567567567566 80% 0 0 1 0 0 blake edwards comedy,crime united kingdom,united states english 0.36947791164658633
201 624 625 let it fall: los angeles 1982-1992 2017 18+ 0.8243243243243241 100% 1 0 0 0 0 john ridley documentary,history united states english 0.5341365461847389
202 4487 4488 escape from new york 1981 18+ 0.7567567567567566 86% 0 0 1 0 0 john carpenter action,adventure,sci-fi united states english 0.35341365461847385
203 16637 16638 inspector gadget 2 2003 all 0.24324324324324317 40% 0 0 0 1 0 alex zamm action,comedy,crime,family,sci-fi united states english 0.3132530120481927
204 5833 5834 felix and meira 2015 18+ 0.689189189189189 78% 0 0 1 0 0 maxime giroux drama,romance canada english,french,hebrew,italian,spanish,yiddish 0.37751004016064255
205 8374 8375 under the bed 2012 18+ 0.40540540540540526 40% 0 0 1 0 0 steven c. miller drama,horror united states english 0.3052208835341365
206 6056 6057 stone of destiny 2008 7+ 0.7027027027027025 53% 0 0 1 0 0 charles martin smith adventure,comedy,crime,drama,history canada,united kingdom english 0.34136546184738953
207 2478 2479 sextuplets 2019 16+ 0.3783783783783783 14% 1 0 0 0 0 michael tiddes comedy united states english 0.34538152610441764
208 1298 1299 tad the lost explorer and the secret of king midas 2017 7+ 0.6216216216216215 29% 1 0 0 0 0 david alonso,enrique gato adventure,animation,comedy,family,fantasy spain,united states english,spanish 0.2971887550200803
209 4846 4847 support your local sheriff 1969 all 0.7972972972972971 73% 0 0 1 0 0 burt kennedy comedy,romance,western united states english 0.3253012048192771
210 16317 16318 fantasia 2000 1999 all 0.7567567567567566 81% 0 0 0 1 0 don hahn,eric goldberg,francis glebas,gaëtan brizzi,hendel butoy,james algar,paul brizzi,pixote hunt animation,comedy,family,fantasy,music united states english 0.2570281124497992
211 5370 5371 the private lives of pippa lee 2009 18+ 0.6486486486486486 69% 0 0 1 0 0 rebecca miller comedy,drama,romance united states english 0.34939759036144574
212 4586 4587 air force one 1997 18+ 0.6621621621621621 76% 0 0 1 0 0 wolfgang petersen action,drama,thriller germany,united states english,russian 0.4538152610441767
213 1253 1254 3 generations 2016 13+ 0.581081081081081 32% 1 0 0 0 0 gaby dellal drama united states english,spanish 0.3253012048192771
214 2684 2685 i am vengeance 2018 18+ 0.3648648648648647 38% 1 0 1 0 0 ross boyask action united kingdom english 0.3253012048192771
215 6379 6380 fear x 2003 13+ 0.5945945945945945 58% 0 0 1 0 0 nicolas winding refn drama,mystery,thriller brazil,canada,denmark,united kingdom english 0.321285140562249
216 974 975 war on everyone 2016 18+ 0.5675675675675674 61% 1 0 0 0 0 john michael mcdonagh action,comedy,crime united kingdom english,spanish 0.34939759036144574
217 16262 16263 togo 2019 7+ 0.8783783783783781 91% 0 0 0 1 0 ericson core adventure,biography,drama,family,history united states english 0.40963855421686746
218 576 577 the angel 2018 18+ 0.6756756756756754 75% 1 0 1 0 0 ariel vromen drama,thriller israel,united states arabic,english,hebrew,italian 0.41365461847389556
219 4637 4638 mcqueen 2018 18+ 0.8378378378378377 99% 0 0 1 0 0 ian bonhôte,peter ettedgui biography,documentary united kingdom english,french 0.4016064257028112
220 6408 6409 these girls 2005 18+ 0.5270270270270269 73% 0 0 1 0 0 john hazlett comedy,drama canada english 0.3253012048192771
221 4569 4570 pretty in pink 1986 13+ 0.7027027027027025 77% 0 0 1 0 0 howard deutch comedy,drama,romance united states english 0.34538152610441764
222 4773 4774 the panama papers 2018 13+ 0.7567567567567566 100% 0 0 1 0 0 alex winter documentary united states english,icelandic,maltese,russian,spanish 0.34136546184738953
223 5047 5048 lila says 2005 18+ 0.7162162162162161 68% 0 0 1 0 0 ziad doueiri crime,drama,romance france,united kingdom arabic,french 0.3132530120481927
224 2472 2473 poster boys 2017 13+ 0.5270270270270269 33% 1 0 0 0 0 shreyas talpade comedy india hindi 0.4698795180722891
225 4309 4310 ghost team 2016 13+ 0.40540540540540526 11% 0 1 0 0 0 oliver irving comedy,thriller united states english 0.2891566265060241
226 16447 16448 the cat from outer space 1978 all 0.6081081081081079 67% 0 0 0 1 0 norman tokar comedy,family,sci-fi united states english 0.37349397590361444
227 16438 16439 descendants 3 2019 all 0.689189189189189 78% 0 0 0 1 0 kenny ortega adventure,family,musical united states english 0.38152610441767065
228 8615 8616 mvp: most valuable primate 2000 7+ 0.3378378378378377 20% 0 0 1 0 0 robert vince comedy,family,sport canada,united states english 0.3293172690763052
229 16274 16275 thor: the dark world 2013 13+ 0.7162162162162161 66% 0 0 0 1 0 alan taylor action,adventure,fantasy united states english 0.4056224899598393
230 5569 5570 sukiyaki western django 2007 18+ 0.6216216216216215 56% 0 0 1 0 0 takashi miike action,western japan english 0.4417670682730923
231 6695 6696 new york doll 2005 13+ 0.8243243243243241 90% 0 0 1 0 0 greg whiteley documentary,music united states english 0.2570281124497992
232 4070 4071 6 below: miracle on the mountain 2017 13+ 0.554054054054054 22% 0 1 0 0 0 scott waugh adventure,biography,drama,sport,thriller united states english 0.34939759036144574
233 5616 5617 the foot fist way 2006 18+ 0.635135135135135 54% 0 0 1 0 0 jody hill comedy united states english 0.2971887550200803
234 6285 6286 the armor of light 2015 13+ 0.689189189189189 96% 0 0 1 0 0 abigail disney,kathleen hughes documentary,news united states english 0.3092369477911646
235 16419 16420 fun and fancy free 1947 all 0.6756756756756754 67% 0 0 0 1 0 bill roberts,hamilton luske,jack kinney,william morgan adventure,animation,comedy,family,fantasy,musical,romance united states english 0.24899598393574296
236 1414 1415 the duel 2016 13+ 0.5675675675675674 26% 1 0 1 0 0 kieran darcy-smith drama,western united states english,spanish 0.3975903614457831
237 9398 9399 destiny turns on the radio 1995 18+ 0.3918918918918918 17% 0 0 1 0 0 jack baran comedy,crime,fantasy united states english 0.3654618473895582
238 6797 6798 grand theft parsons 2004 13+ 0.5945945945945945 46% 0 0 1 0 0 david caffrey adventure,comedy,drama united kingdom,united states english 0.3092369477911646
239 5133 5134 the exorcist iii 1990 18+ 0.6486486486486486 59% 0 0 1 0 0 william peter blatty drama,horror,mystery united states english 0.3975903614457831
240 16232 16233 aladdin 1992 all 0.8648648648648647 95% 0 0 0 1 0 guy ritchie adventure,family,fantasy,musical,romance united states arabic,english 0.4698795180722891
241 743 744 sweet virginia 2017 18+ 0.6216216216216215 78% 1 0 0 0 0 jamie m. dagg drama,thriller canada english 0.3293172690763052
242 5298 5299 nina forever 2015 18+ 0.5405405405405403 97% 0 0 1 0 0 ben blaine,chris blaine comedy,drama,horror,romance united kingdom english 0.34939759036144574
243 16283 16284 the chronicles of narnia: the lion, the witch and the wardrobe 2005 7+ 0.7162162162162161 76% 0 0 0 1 0 andrew adamson adventure,family,fantasy united kingdom,united states brazilian sign language,english,german 0.5301204819277108
244 3849 3850 dumb: the story of big brother magazine 2017 18+ 0.7567567567567566 100% 0 1 0 0 0 patrick o'dell documentary united states english 0.2730923694779116
245 51 52 the artist 2011 13+ 0.8513513513513513 95% 1 0 0 0 0 michel hazanavicius comedy,drama,romance belgium,france,united states english,french 0.35742971887550196
246 4954 4955 badrinath ki dulhania 2017 7+ 0.6216216216216215 80% 0 0 1 0 0 shashank khaitan comedy,drama,romance india hindi 0.5140562248995983
247 527 528 kaabil 2017 18+ 0.7432432432432431 70% 1 0 0 0 0 sanjay gupta action,drama,thriller india hindi 0.5140562248995983
248 16369 16370 oliver & company 1988 all 0.689189189189189 51% 0 0 0 1 0 george scribner adventure,animation,comedy,family,musical united states english 0.25301204819277107
249 739 740 6 days 2017 18+ 0.6216216216216215 63% 1 0 0 0 0 toa fraser action,drama,history,thriller new zealand,united kingdom arabic,english,persian 0.3333333333333333
250 324 325 my girl 1991 7+ 0.7162162162162161 53% 1 0 0 0 0 howard zieff comedy,drama,family,romance united states english 0.3654618473895582
251 6496 6497 bickford shmeckler's cool ideas 2006 18+ 0.554054054054054 50% 0 0 1 0 0 scott lew comedy,romance united states english 0.2730923694779116
252 3655 3656 bend it like beckham 2002 13+ 0.6756756756756754 85% 0 1 0 0 0 gurinder chadha comedy,drama,romance,sport germany,united kingdom,united states english,german,hindi,punjabi 0.4056224899598393
253 16408 16409 the santa clause 2 2002 all 0.5405405405405403 56% 0 0 0 1 0 michael lembeck comedy,family,fantasy canada,united states english 0.37349397590361444
254 2913 2914 viking destiny 2018 18+ 0.3513513513513513 13% 1 0 0 0 0 david l.g. hughes action,adventure,fantasy belgium,united kingdom english 0.321285140562249
255 125 126 the princess and the frog 2009 all 0.7432432432432431 85% 1 0 0 1 0 john musker,ron clements adventure,animation,comedy,family,fantasy,musical,romance united states english,french 0.34538152610441764
256 4545 4546 moonstruck 1987 7+ 0.7432432432432431 93% 0 0 1 0 0 norman jewison comedy,drama,romance united states english,italian,latin 0.3654618473895582
257 254 255 get him to the greek 2010 18+ 0.6486486486486486 72% 1 0 0 0 0 nicholas stoller comedy,music united states english 0.393574297188755
258 16305 16306 cars 3 2017 all 0.689189189189189 70% 0 0 0 1 0 brian fee adventure,animation,comedy,family,sport united states english 0.3654618473895582
259 7180 7181 they wait 2007 18+ 0.4999999999999999 40% 0 0 1 0 0 ernie barbarash horror,mystery,thriller canada english 0.35341365461847385
260 691 692 horse girl 2020 18+ 0.581081081081081 72% 1 0 0 0 0 jeff baena drama,mystery,thriller united states english 0.36947791164658633
261 1063 1064 the trust 2016 18+ 0.5135135135135135 63% 1 0 0 0 0 dan bush crime,horror,mystery,thriller united states english 0.321285140562249
262 16418 16419 because of winn-dixie 2005 7+ 0.635135135135135 55% 0 0 0 1 0 wayne wang comedy,drama,family united states english 0.38152610441767065
263 1128 1129 acts of vengeance 2017 18+ 0.554054054054054 55% 1 0 0 0 0 isaac florentine action,drama,thriller bulgaria,united states english 0.3052208835341365
264 11793 11794 bela lugosi meets a brooklyn gorilla 1952 all 0.28378378378378377 29% 0 0 1 0 0 william beaudine comedy,horror,sci-fi united states english 0.25301204819277107
265 8408 8409 cook-off! 2007 18+ 0.3378378378378377 14% 0 0 1 0 0 cathryn michon,guy shalem comedy united states english 0.34939759036144574
266 7213 7214 ktown cowboys 2015 18+ 0.689189189189189 33% 0 0 1 0 0 daniel park comedy,drama united states english 0.28112449799196787
267 5252 5253 shade 2003 18+ 0.635135135135135 67% 0 0 1 0 0 damian nieman crime,thriller united states english 0.36144578313253006
268 163 164 the autopsy of jane doe 2016 18+ 0.7027027027027025 86% 1 0 0 0 0 andré øvredal horror,mystery,thriller united kingdom english 0.3012048192771084
269 1381 1382 rolling papers 2015 18+ 0.6216216216216215 58% 1 0 0 0 0 mitch dickman biography,documentary,news united states,uruguay english,spanish 0.2730923694779116
270 5735 5736 blue chips 1994 13+ 0.6216216216216215 37% 0 0 1 0 0 william friedkin drama,sport united states english 0.38955823293172687
271 274 275 olympus has fallen 2013 18+ 0.6621621621621621 49% 1 0 0 0 0 antoine fuqua action,thriller united states english,korean 0.4337349397590361
272 4622 4623 what maisie knew 2013 18+ 0.7837837837837837 86% 0 0 1 0 0 david siegel,scott mcgehee drama united states english 0.35341365461847385
273 5928 5929 peterloo 2018 13+ 0.6621621621621621 66% 0 0 1 0 0 mike leigh drama,history united kingdom english 0.57429718875502
274 3796 3797 destroyer 2018 18+ 0.6216216216216215 74% 0 1 0 0 0 karyn kusama action,crime,drama,mystery,thriller united states english 0.4417670682730923
275 16354 16355 pollyanna 1960 all 0.7837837837837837 86% 0 0 0 1 0 david swift comedy,drama,family united states english 0.49397590361445776
276 6376 6377 hatchet ii 2010 18+ 0.5270270270270269 40% 0 0 1 0 0 adam green action,comedy,horror,thriller united states english 0.2971887550200803
277 7873 7874 mi america 2015 18+ 0.6486486486486486 50% 0 0 1 0 0 robert fontaine crime,drama united states english,spanish 0.31726907630522083
278 4890 4891 the falcon and the snowman 1985 18+ 0.7027027027027025 81% 0 0 1 0 0 john schlesinger biography,crime,drama,thriller mexico,united kingdom,united states english 0.4819277108433735
279 4598 4599 rab ne bana di jodi 2008 7+ 0.7567567567567566 78% 0 0 1 0 0 aditya chopra comedy,drama,music,romance india hindi 0.6265060240963854
280 6986 6987 redemption road 2011 13+ 0.554054054054054 57% 0 0 1 0 0 york alec shackleton action,adventure,thriller,western united states english 0.321285140562249
281 6651 6652 the dark backward 1991 18+ 0.5675675675675674 45% 0 0 1 0 0 adam rifkin comedy united states english 0.36144578313253006
282 25 26 ex machina 2015 18+ 0.8243243243243241 92% 1 0 0 0 0 alex garland drama,mystery,sci-fi,thriller united kingdom,united states english 0.38955823293172687
283 1375 1376 the same blood 2019 18+ 0.5945945945945945 100% 1 0 0 0 0 miguel cohan drama,mystery,thriller argentina,united states spanish 0.40963855421686746
284 4541 4542 the boondock saints 1999 18+ 0.8378378378378377 22% 0 0 1 0 0 troy duffy action,crime,thriller canada,united states english,latin,papiamento,russian,spanish 0.38955823293172687
285 5383 5384 fritz the cat 1972 18+ 0.635135135135135 58% 0 0 1 0 0 ralph bakshi animation,comedy,drama united states english,yiddish 0.2690763052208835
286 3762 3763 odd thomas 2013 13+ 0.7027027027027025 38% 0 1 1 0 0 stephen sommers comedy,fantasy,horror,mystery,romance,thriller united kingdom,united states english 0.35742971887550196
287 988 989 clive davis: the soundtrack of our lives 2017 13+ 0.7837837837837837 80% 1 0 0 0 0 chris perkel documentary united states english 0.4497991967871486
288 7024 7025 gehenna: where death lives 2016 18+ 0.44594594594594583 50% 0 0 1 0 0 hiroshi katagiri horror,mystery,thriller japan,united states english 0.37751004016064255
289 1511 1512 backtrack 2015 18+ 0.581081081081081 30% 1 0 0 0 0 michael petroni drama,fantasy,mystery,thriller australia,canada,united arab emirates,united kingdom english 0.31726907630522083
290 7334 7335 harbinger down 2015 18+ 0.3918918918918918 43% 0 0 1 0 0 alec gillis horror,sci-fi united states english 0.285140562248996
291 8331 8332 wild horses 2015 18+ 0.43243243243243235 17% 0 0 1 0 0 robert duvall crime,drama,western united states english 0.35742971887550196
292 918 919 a little chaos 2015 18+ 0.6621621621621621 48% 1 0 0 0 0 alan rickman drama,romance united kingdom english 0.4056224899598393
293 16297 16298 pete's dragon 2016 7+ 0.689189189189189 88% 0 0 0 1 0 david lowery action,adventure,comedy,drama,family,fantasy united states english 0.3654618473895582
294 115 116 zindagi na milegi dobara 2011 7+ 0.8783783783783781 91% 1 0 0 0 0 zoya akhtar comedy,drama india english,hindi,japanese,spanish 0.5783132530120482
295 954 955 the bounty hunter 2010 13+ 0.5405405405405403 12% 1 0 0 0 0 andy tennant action,comedy,romance united states english,ukrainian 0.3975903614457831
296 7153 7154 an american affair 2008 18+ 0.6216216216216215 16% 0 0 1 0 0 william olsson drama united states english 0.3293172690763052
297 1451 1452 the week of 2018 13+ 0.4729729729729728 27% 1 0 0 0 0 robert smigel comedy united states english 0.4216867469879518
298 768 769 cult of chucky 2017 18+ 0.4864864864864864 78% 1 0 0 0 0 don mancini comedy,fantasy,horror,thriller united states english 0.321285140562249
299 5601 5602 father's day 2011 18+ 0.5945945945945945 80% 0 0 1 0 0 george a. romero comedy,fantasy,horror united states english 0.4377510040160642
300 140 141 locke 2014 18+ 0.7432432432432431 91% 1 0 0 0 0 steven knight drama united kingdom,united states english 0.2971887550200803
301 3962 3963 the beach bum 2019 18+ 0.5270270270270269 56% 0 1 0 0 0 harmony korine comedy france,switzerland,united kingdom,united states english,spanish 0.3373493975903614
302 6938 6939 strange wilderness 2008 18+ 0.4999999999999999 2% 0 0 1 0 0 fred wolf adventure,comedy united states english 0.3052208835341365
303 5514 5515 species 1995 18+ 0.5675675675675674 43% 0 0 1 0 0 roger donaldson action,horror,sci-fi,thriller united states english 0.38955823293172687
304 364 365 veronica 2017 18+ 0.6216216216216215 88% 1 0 0 0 0 bob odenkirk,brett ratner,elizabeth banks,griffin dunne,james duffy,james gunn,jonathan van tulleken,patrik forsberg,peter farrelly,rusty cundieff,steve carr,steven brill,will graham comedy united states english 0.3333333333333333
305 8923 8924 6 ways to die 2015 18+ 0.32432432432432423 40% 0 0 1 0 0 nadeem soumah crime,mystery,thriller united states english 0.36947791164658633
306 4915 4916 the kentucky fried movie 1977 18+ 0.6621621621621621 81% 0 0 1 0 0 john landis comedy united states english,korean 0.2891566265060241
307 3724 3725 hearts beat loud 2018 13+ 0.7162162162162161 91% 0 1 0 0 0 brett haley comedy,drama,music united states english 0.34538152610441764
308 4549 4550 fist of fury 1972 18+ 0.7837837837837837 92% 0 0 1 0 0 wei lo action,drama,romance,thriller hong kong cantonese,english,mandarin 0.38152610441767065
309 5959 5960 bone 1972 18+ 0.7027027027027025 67% 0 0 1 0 0 larry cohen comedy,drama,thriller united states english 0.3373493975903614
310 6118 6119 all these sleepless nights 2016 18+ 0.6756756756756754 69% 0 0 1 0 0 michal marczak documentary,drama poland,united kingdom polish 0.35742971887550196
311 4563 4564 dead ringers 1988 18+ 0.7702702702702701 82% 0 0 1 0 0 david cronenberg drama,horror,thriller canada english 0.4216867469879518
312 3643 3644 romancing the stone 1984 7+ 0.7162162162162161 84% 0 1 0 0 0 robert zemeckis action,adventure,comedy,romance mexico,united states english,french,spanish 0.38152610441767065
313 383 384 spectral 2016 13+ 0.635135135135135 75% 1 0 0 0 0 nic mathieu action,adventure,mystery,sci-fi,thriller hungary,united states english,romanian,russian,slovenian 0.38554216867469876
314 15733 15734 freestyle 2010 13+ 0.1621621621621621 22% 0 0 1 0 0 harley cokeliss drama united kingdom english 0.3333333333333333
315 130 131 the squid and the whale 2005 18+ 0.7702702702702701 92% 1 0 1 0 0 noah baumbach comedy,drama united states english 0.28112449799196787
316 4950 4951 the night eats the world 2018 16+ 0.5945945945945945 85% 0 0 1 0 0 dominique rocher drama,horror,thriller france english,french,norwegian 0.3293172690763052
317 9541 9542 amnesiac 2015 18+ 0.3648648648648647 27% 0 0 1 0 0 michael polish drama,horror,mystery,thriller united states english 0.31726907630522083
318 3805 3806 star trek: the motion picture 1979 7+ 0.6486486486486486 42% 0 1 1 0 0 robert wise adventure,mystery,sci-fi united states english,klingon 0.48594377510040154
319 16424 16425 ruby bridges 1998 7+ 0.7567567567567566 83% 0 0 0 1 0 euzhan palcy adventure,drama,family,fantasy united states english 0.34136546184738953
320 16560 16561 the brave little toaster to the rescue 1997 all 0.635135135135135 40% 0 0 0 1 0 patrick a. ventura,robert c. ramirez adventure,animation,family,fantasy united states chinese,english,french,japanese,korean,mandarin 0.25301204819277107
321 3628 3629 star trek vi: the undiscovered country 1991 7+ 0.7567567567567566 82% 0 1 1 0 0 nicholas meyer action,adventure,sci-fi,thriller united states english,klingon 0.3975903614457831
322 3676 3677 i can only imagine 2018 7+ 0.7702702702702701 61% 0 1 1 0 0 andrew erwin,jon erwin biography,drama,family,music united states english 0.3975903614457831
323 4825 4826 milius 2013 7+ 0.7972972972972971 94% 0 0 1 0 0 joey figueroa,zak knutson biography,documentary,drama united states english 0.36947791164658633
324 4268 4269 the reunion 2011 13+ 0.4864864864864864 8% 0 1 1 0 0 michael rosenbaum comedy united kingdom,united states english 0.3333333333333333
325 4647 4648 transsiberian 2008 18+ 0.689189189189189 92% 0 0 1 0 0 brad anderson crime,drama,mystery,thriller germany,lithuania,spain,united kingdom english,french,mandarin,russian,spanish 0.4016064257028112
326 906 907 knock down the house 2019 7+ 0.7162162162162161 100% 1 0 0 0 0 rachel lears documentary united states english 0.3052208835341365
327 16484 16485 home alone 3 1997 7+ 0.3918918918918918 29% 0 0 0 1 0 raja gosnell comedy,crime,family united states english,polish 0.3654618473895582
328 2625 2626 day of the dead: bloodline 2017 18+ 0.24324324324324317 13% 1 0 0 0 0 hèctor hernández vicens horror bulgaria,united states english 0.31726907630522083
329 3794 3795 man on a ledge 2012 13+ 0.6756756756756754 32% 0 1 1 0 0 asger leth action,adventure,crime,thriller united states english,spanish 0.3654618473895582
330 7330 7331 tell your children 1936 7+ 0.29729729729729715 39% 0 0 1 0 0 louis j. gasnier crime,drama united states english 0.22088353413654616
331 4584 4585 hellraiser 1987 18+ 0.7297297297297296 70% 0 0 1 0 0 clive barker horror,thriller united kingdom english 0.3333333333333333