movies.errors <- read.table("http://nathanieldphillips.com/wp-content/uploads/2016/01/movies_errors.txt",
sep = "\t",
header = T,
stringsAsFactors = F)
names(movies.errors)[names(movies.errors) == "movie7653.name"] <- "Name"
names(movies.errors)[names(movies.errors) == "total.boxoffice.earnings"] <- "Boxoffice_total"
names(movies.errors)[names(movies.errors) == "dvd.earnings.in.us.639c"] <- "DVD earnings in USD"
names(movies.errors)[names(movies.errors) == "total.movie.budget"] <- "Budget in USD"
names(movies.errors)[names(movies.errors) == "rating.GPGPG13RNC17"] <- "Rating"
names(movies.errors)[names(movies.errors) == "genreX8423"] <- "Genre"
names(movies.errors)[names(movies.errors) == "TIME"] <- "Length"
names(movies.errors)[names(movies.errors) == "year.of.release"] <- "Year of release"
names(movies.errors)[names(movies.errors) == "sequel"] <- "Sequel"
summary(movies.errors$Boxoffice_total)
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 1.251e+07 2.256e+07 4.222e+07 9.821e+07 1.023e+08 2.784e+09
min(movies.errors$Boxoffice_total)
## [1] 12512317
max(movies.errors$Boxoffice_total)
## [1] 2783918982
hist(movies.errors$Boxoffice_total)
summary(movies.errors$`DVD earnings in USD`)
## Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
## 6339 7563000 15800000 27980000 30570000 540400000 3566
summary(movies.errors$`Budget in USD`)
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 0.000e+00 0.000e+00 1.200e+07 1.882e+21 3.925e+07 9.770e+23
# identify movies whos budget is zero and delete these rows
movies.errors$Name[movies.errors$`Budget in USD`==0]
## [1] "Inside Out"
## [2] "Les Intouchables"
## [3] "Kingsman: The Secret Service"
## [4] "Monster Hunt"
## [5] "Basic Instinct"
## [6] "101 Dalmatians"
## [7] "Rocky IV"
## [8] "Look Who's Talking"
## [9] "Saturday Night Fever"
## [10] "Coming to America"
## [11] "Bambi"
## [12] "Indecent Proposal"
## [13] "Bean"
## [14] "Gang jiong"
## [15] "Wild Hogs"
## [16] "Brother Bear"
## [17] "Grand Canyon: The Hidden Secrets"
## [18] "Life is Beautiful"
## [19] "Sister Act"
## [20] "Lethal Weapon 2"
## [21] "Honey, I Shrunk the Kids"
## [22] "The Little Mermaid"
## [23] "Sleepless in Seattle"
## [24] "Presumed Innocent"
## [25] "Dirty Dancing"
## [26] "Ted 2"
## [27] "Ghostbusters II"
## [28] "Disclosure"
## [29] "Xi you xiang mo pian"
## [30] "Ren zai jiong tu zhi tai jiong"
## [31] "Rocky 2"
## [32] "Xia Luo Te Fan Nao"
## [33] "Xin Hua Lu Fang"
## [34] "Heat"
## [35] "In the Line of Fire"
## [36] "Maverick"
## [37] "While You Were Sleeping"
## [38] "The Birdcage"
## [39] "Jian Bing Man"
## [40] "Dangerous Minds"
## [41] "Hot Shots!"
## [42] "Sleeping with the Enemy"
## [43] "Meet the Robinsons"
## [44] "Shi Er Sheng Xiao"
## [45] "Xi you ji: Da nao tian gong"
## [46] "Everest"
## [47] "Norbit"
## [48] "Demolition Man"
## [49] "Under Siege"
## [50] "ao men feng yun 2"
## [51] "Free Willy"
## [52] "Sweeney Todd: The Demon Barber of Fleet Street"
## [53] "101 Dalmatians"
## [54] "Another 48 Hrs."
## [55] "Backdraft"
## [56] "Xi you ji zhi da sheng gui lai"
## [57] "The Secret World of Arietty"
## [58] "Stand By Me Doraemon"
## [59] "Gun dan ba! Zhong liu jun"
## [60] "The Jungle Book"
## [61] "The Taking of Tiger Mountain"
## [62] "Sommersby"
## [63] "Bird on a Wire"
## [64] "Nine Months"
## [65] "Love Story"
## [66] "Myeong-ryang"
## [67] "Hot Shots! Part Deux"
## [68] "Aliens vs. Predator - Requiem"
## [69] "Everest"
## [70] "Forever Young"
## [71] "The Heartbreak Kid"
## [72] "An Officer and a Gentleman"
## [73] "Smokey and the Bandit"
## [74] "Staying Alive"
## [75] "The Dream is Alive"
## [76] "Fack ju Gohte 2"
## [77] "The Wedding Singer"
## [78] "Space Station"
## [79] "Parenthood"
## [80] "To Fly!"
## [81] "Qu'est ce qu'on a fait au bon dieu"
## [82] "Rocky V"
## [83] "Michael"
## [84] "Rocky III"
## [85] "On Golden Pond"
## [86] "Hua Pi 2"
## [87] "Kaze Tachinu"
## [88] "Dennis the Menace"
## [89] "City Slickers"
## [90] "Si Ren Ding Zhi"
## [91] "Sliver"
## [92] "Romancing the Stone"
## [93] "Where Are We Going Dad?"
## [94] "The Karate Kid, Part II"
## [95] "Lang Tu Teng"
## [96] "Junior"
## [97] "Confessions of a Shopaholic"
## [98] "The Santa Clause 3: The Escape Clause"
## [99] "Transporter 3"
## [100] "The Breakup Guru"
## [101] "Jiu ceng yao ta"
## [102] "Mr. Holland's Opus"
## [103] "Terms of Endearment"
## [104] "Made In America"
## [105] "The Graduate"
## [106] "Every Which Way but Loose"
## [107] "Gukjesijang"
## [108] "T-Rex: Back to the Cretaceous"
## [109] "The Water Horse: Legend of the Deep"
## [110] "Primal Fear"
## [111] "Ghosts of Girlfriends Past"
## [112] "Stir Crazy"
## [113] "Airport"
## [114] "The Man From U.N.C.L.E."
## [115] "Nine to Five"
## [116] "Hou hui wu qi"
## [117] "Zhi wo men zhong jiang shi qu de qing chun"
## [118] "The Good Shepherd"
## [119] "Kramer vs. Kramer"
## [120] "Heaven Can Wait"
## [121] "French Kiss"
## [122] "Billy Jack"
## [123] "Fred Claus"
## [124] "Di Renjie zhi shendu longwang"
## [125] "P.K."
## [126] "Harlem Nights"
## [127] "HouseSitter"
## [128] "Saat po long 2"
## [129] "Cong cong na nian"
## [130] "Forces of Nature"
## [131] "Lady and the Tramp"
## [132] "The Poseidon Adventure"
## [133] "Calendar Girls"
## [134] "Masquerade"
## [135] "Gwanghae, Wangyidoen namja"
## [136] "Assassination"
## [137] "White Men Can't Jump"
## [138] "Veteran"
## [139] "Mysteries of Egypt"
## [140] "Rien a declarer"
## [141] "Father of the Bride"
## [142] "Fracture"
## [143] "The Trial of Billy Jack"
## [144] "Steel Magnolias"
## [145] "Rumor Has It"
## [146] "Trading Places"
## [147] "The Cider House Rules"
## [148] "Brave Hearts Umizaru"
## [149] "The Hand That Rocks the Cradle"
## [150] "Deep Sea 3D"
## [151] "Wolf Warriors"
## [152] "The Guardian"
## [153] "Dodookdeul"
## [154] "Back to School"
## [155] "The Amityville Horror"
## [156] "Jing cha gu shi er ling yi san"
## [157] "Rookies"
## [158] "Long men fei jia"
## [159] "7beonbangui Seonmool"
## [160] "Du cheng feng yun"
## [161] "Pinocchio"
## [162] "The Second Best Exotic Marigold Hotel"
## [163] "The Parent Trap"
## [164] "The Goodbye Girl"
## [165] "Point Break"
## [166] "The War of the Roses"
## [167] "B_ij_ng y sh<U+0088>ng xi y_ t<U+009C>"
## [168] "Shaun the Sheep"
## [169] "Paper Towns"
## [170] "In Her Shoes"
## [171] "Hitman: Agent 47"
## [172] "Waiting to Exhale"
## [173] "Yi bu zhi yao"
## [174] "Dying Young"
## [175] "Arthur"
## [176] "The Wedding Ringer"
## [177] "Earthquake"
## [178] "Nights in Rodanthe"
## [179] "Tiny Times 4.0"
## [180] "Fried Green Tomatoes"
## [181] "The Haunting in Connecticut"
## [182] "Gothika"
## [183] "Cocktail"
## [184] "Zuo Er"
## [185] "Step Up All In"
## [186] "Ocho Apellidos Vascos"
## [187] "Something to Talk About"
## [188] "Moonstruck"
## [189] "Byeon-ho-in"
## [190] "Bajrangi Bhaijaan"
## [191] "Father of the Bride Part II"
## [192] "John Wick"
## [193] "48 Hrs."
## [194] "Cocoon"
## [195] "Xiao shi dai 3"
## [196] "The Jerk"
## [197] "Next"
## [198] "Tong zhuo de ni"
## [199] "Hana yori dango: Fainaru"
## [200] "Problem Child"
## [201] "Always"
## [202] "Wan P_su Firumu: Zetto"
## [203] "Fack ju Gothe"
## [204] "Thermae Romae"
## [205] "Grumpier Old Men"
## [206] "3 Men and a Little Lady"
## [207] "National Lampoon's Christmas Vacation"
## [208] "The Naked Gun: From the Files of Police Squad!"
## [209] "Any Which Way You Can"
## [210] "Odoru Dais<U+0099>sasen the Final: Aratanaru kib<U+0099>"
## [211] "Stop! Or My Mom Will Shoot"
## [212] "Grumpy Old Men"
## [213] "Turner & Hooch"
## [214] "The Pink Panther 2"
## [215] "The Brave One"
## [216] "Hero"
## [217] "Dolphins"
## [218] "3 Idiots"
## [219] "John Tucker Must Die"
## [220] "Benpao Ba! Xiongdi"
## [221] "Ruthless People"
## [222] "Purple Rain"
## [223] "Stalingrad"
## [224] "Mr. Magorium's Wonder Emporium"
## [225] "Taxi"
## [226] "Gedo Senki (Tales from Earthsea)"
## [227] "Todo sobre mi madre"
## [228] "War Room"
## [229] "Sudden Impact"
## [230] "A Perfect Murder"
## [231] "Prime"
## [232] "Runaway Jury"
## [233] "Broadcast News"
## [234] "Chennai Express"
## [235] "Sole A Catinelle"
## [236] "Secret of the Wings"
## [237] "The Secret of My Success"
## [238] "Huo Yuan Jia"
## [239] "Hubble 3D"
## [240] "Honig im Kipf"
## [241] "The Little Rascals"
## [242] "Okuribito"
## [243] "Smokey and the Bandit II"
## [244] "Antarctica"
## [245] "Fei Cheng Wu Rao 2"
## [246] "Annie"
## [247] "Bei Jing Ai Qing Gu Shi"
## [248] "Dan in Real Life"
## [249] "Dao shi xia shan"
## [250] "The Hard Way"
## [251] "Jing Cheng 81 Hao"
## [252] "Fort Apache, The Bronx"
## [253] "Underdog"
## [254] "Ferris Bueller's Day Off"
## [255] "Song of the South"
## [256] "The Living Sea"
## [257] "Mr. Mom"
## [258] "Haeundae"
## [259] "The Jewel of the Nile"
## [260] "Tropa de Elite 2: O Inimigo Agora <U+0083> Outro"
## [261] "Taking Lives"
## [262] "Uncle Buck"
## [263] "Eien No 0"
## [264] "Zhong Kui fu mo: Xue yao mo ling"
## [265] "Scent of a Woman"
## [266] "What About Bob?"
## [267] "Risky Business"
## [268] "A Fish Called Wanda"
## [269] "Stakeout"
## [270] "A Star is Born"
## [271] "Rising Sun"
## [272] "Ji<U+0088>ng<U+009C>o d<U+0088>y"
## [273] "Pirates"
## [274] "Piglet's Big Movie"
## [275] "The Witches of Eastwick"
## [276] "Perfect Stranger"
## [277] "Gwansang"
## [278] "Ek Tha Tiger"
## [279] "Bai tuan da zhan"
## [280] "Flickan som lekte med elden"
## [281] "Keinohrhasen"
## [282] "An American Werewolf in London"
## [283] "I Love Trouble"
## [284] "The White Haired Witch of Lunar Kingdom"
## [285] "Working Girl"
## [286] "Umizaru 2: Test of Trust"
## [287] "National Lampoon's Summer Vacation"
## [288] "The Goonies"
## [289] "Misery"
## [290] "Taxi 4"
## [291] "Ji<U+0088>n D_ng W_i Y"
## [292] "Les Rivires Pourpres"
## [293] "Field of Dreams"
## [294] "Jungle 2 Jungle"
## [295] "Down and Out in Beverly Hills"
## [296] "Spies Like Us"
## [297] "The Last Boy Scout"
## [298] "Matchstick Men"
## [299] "Chong fan 20 sui"
## [300] "Far and Away"
## [301] "Honey I Blew Up the Kid"
## [302] "Funny Girl"
## [303] "\\Doragon b<U+0099>ru Z: Fukkatsu no F\\\\\\"
## [304] "Are We Done Yet?"
## [305] "Dave"
## [306] "The Inbetweeners 2"
## [307] "U.S. Marshals"
## [308] "The Perfect Guy"
## [309] "The Cannonball Run"
## [310] "Sister Act 2 Back in the Habit"
## [311] "Willow"
## [312] "What's Up, Doc?"
## [313] "Evangelion Shin Gekij<U+0099>ban: Kyu"
## [314] "Beethoven"
## [315] "Guess Who's Coming to Dinner"
## [316] "The Final Countdown"
## [317] "You Are My Sunshine"
## [318] "Dragnet"
## [319] "The Big Chill"
## [320] "In Search of Noah's Ark"
## [321] "The Aristocats"
## [322] "The Beverly Hillbillies"
## [323] "Never Been Kissed"
## [324] "Great Expectations"
## [325] "Police Academy 2: Their First Assignment"
## [326] "Yi jiu si er"
## [327] "The Motorcycle Diaries"
## [328] "Beaches"
## [329] "Ironiya Sudby. Prodolzhenie"
## [330] "Shi Lian 33 Tian"
## [331] "The Hot Chick"
## [332] "Qin ai de"
## [333] "National Security"
## [334] "Doc Hollywood"
## [335] "Rookie of the Year"
## [336] "Throw Momma From the Train"
## [337] "Madea's Big Happy Family"
## [338] "Papillon"
## [339] "Hollywood Adventures"
## [340] "Wickie und die starken M<U+008A>nner"
## [341] "To the Limit"
## [342] "The Sinking of Japan"
## [343] "Suspect X"
## [344] "Outrageous Fortune"
## [345] "The Recruit"
## [346] "Choi-jong-byeong-gi-hwal"
## [347] "American Gigolo"
## [348] "Beethoven's 2nd"
## [349] "Unlawful Entry"
## [350] "10"
## [351] "Tyler Perry's Temptation"
## [352] "Awakenings"
## [353] "Hooper"
## [354] "Bodyguard"
## [355] "Silver Streak"
## [356] "Oh, God!"
## [357] "All the President's Men"
## [358] "Las aventuras de Tadeo Jones"
## [359] "Bull Durham"
## [360] "College Road Trip"
## [361] "Gekijouban Pokketo monsut<U+0089> Besuto wisshu: Pikutini to kuroku eiyuu Zekuromu"
## [362] "Feng Bao"
## [363] "Hable con ella"
## [364] "Sea Monsters: A Prehistoric Adventure"
## [365] "Bonnie and Clyde"
## [366] "The Deep"
## [367] "The Crow"
## [368] "The Love Bug"
## [369] "Eddie Murphy Raw"
## [370] "The Nightmare Before Christmas"
## [371] "The Three Musketeers"
## [372] "Natural Born Killers"
## [373] "Supercondriaque"
## [374] "He Yi Sheng Xiao Mo"
## [375] "A Walk in the Clouds"
## [376] "The Way We Were"
## [377] "Pleasantville"
## [378] "Planes, Trains & Automobiles"
## [379] "Kokuriko-zaka Kara"
## [380] "Angels in the Outfield"
## [381] "Ip Man: Legend of the Grand Master"
## [382] "Jonas Brothers: The 3D Concert Experience"
## [383] "Oliver & Company"
## [384] "Shampoo"
## [385] "National Lampoon's European Vacation"
## [386] "Biloxi Blues"
## [387] "May 18"
## [388] "Bugsy"
## [389] "Arthur et la vengeance de Maltazard"
## [390] "The Rescuers"
## [391] "When a Man Loves a Woman"
## [392] "The Preacher's Wife"
## [393] "Single White Female"
## [394] "Welcome to Dongmakgol"
## [395] "Sutekina kanashibari"
## [396] "Sunny"
## [397] "The Natural"
## [398] "The Dead End"
## [399] "An American Tail"
## [400] "The Rescuers Down Under"
## [401] "Tightrope"
## [402] "Hard To Kill"
## [403] "Airport 1975"
## [404] "The Toy"
## [405] "Meitantei Conan: Chinmoku no ku<U+0099>t<U+0089>"
## [406] "Dabangg"
## [407] "Xiong Chumo Zhi Xueling Xiongfeng"
## [408] "Desu Noto 2"
## [409] "Urban Cowboy"
## [410] "See No Evil, Hear No Evil"
## [411] "Chef"
## [412] "Dog Day Afternoon"
## [413] "Colors"
## [414] "Look Who's Talking Too"
## [415] "The Rocketeer"
## [416] "The Brady Bunch Movie"
## [417] "How the West Was Won"
## [418] "Miracle on 34th Street"
## [419] "Under the Sea 3D"
## [420] "The Enforcer"
## [421] "The Paper"
## [422] "Deliverance"
## [423] "One Fine Day"
## [424] "Malice"
## [425] "The Nanny Diaries"
## [426] "Mr. Brooks"
## [427] "Zan men jie hun ba"
## [428] "The Breakfast Club"
## [429] "Greystoke: The Legend of Tarzan, Lord of the Apes"
## [430] "Brewster's Millions"
## [431] "Take Off"
## [432] "Addams Family Values"
## [433] "RoboCop 2"
## [434] "You yi ge di fang zhi you wo men zhi dao"
## [435] "New Jack City"
## [436] "Fletch"
## [437] "Kokowaah"
## [438] "Grizzly Adams"
## [439] "Hero"
## [440] "Thelma & Louise"
## [441] "Wei ai zhi jian ru jia jing"
## [442] "The Dirty Dozen"
## [443] "Eunmilhage Widaehage"
## [444] "Wayne's World 2"
## [445] "Cold War"
## [446] "Full Metal Jacket"
## [447] "Convoy"
## [448] "D2: The Mighty Ducks"
## [449] "Cobra"
## [450] "Jeremiah Johnson"
## [451] "Neuk-dae-so-nyeon"
## [452] "Magnum Force"
## [453] "Ra. One"
## [454] "The Odd Couple"
## [455] "The Good Son"
## [456] "Valley of the Dolls"
## [457] "Bereurlin"
## [458] "Passenger 57"
## [459] "_kami Kodomo no Ame to Yuki"
## [460] "Love at First Bite"
## [461] "The Fox and the Hound"
## [462] "The Distinguished Gentleman"
## [463] "City Slickers II: The Legend of Curly's Gold"
## [464] "Sur la piste du Marsupilami"
## [465] "Midway"
## [466] "The Longest Yard"
## [467] "Regarding Henry"
## [468] "Meatballs"
## [469] "California Suite"
## [470] "Just Friends"
## [471] "The Uninvited"
## [472] "Heartbreak Ridge"
## [473] "The Electric Horseman"
## [474] "Pokemon 2008"
## [475] "To Sir With Love"
## [476] "Mask"
## [477] "Forever Young"
## [478] "The Bad News Bears"
## [479] "Blue Thunder"
## [480] "Bullitt"
## [481] "Chi zi Xi zi Pi zi"
## [482] "Jaws 3-D"
## [483] "Police Academy 3: Back in Training"
## [484] "Dabangg 2"
## [485] "White Nights"
## [486] "Dirty Rotten Scoundrels"
## [487] "Meitantei Conan: Juichi-ninme no Striker"
## [488] "Homeward Bound: The Incredible Journey"
## [489] "Easy Rider"
## [490] "Cheech & Chong's Next Movie"
## [491] "Up in Smoke"
## [492] "Meitantei Conan: Chinmoku No 15 Fun"
## [493] "Three Days of the Condor"
## [494] "A River Runs Through It"
## [495] "The Great Outdoors"
## [496] "Ghajini"
## [497] "The Gallows"
## [498] "Cabaret"
## [499] "Private Parts"
## [500] "Luftslottet som spr<U+008A>ngdes"
## [501] "Poltergeist II: The Other Side"
## [502] "Pokemon 2009"
## [503] "Pee Wee's Big Adventure"
## [504] "Falling Down"
## [505] "Balls of Fury"
## [506] "Revenge of the Nerds"
## [507] "Focus"
## [508] "Broken Flowers"
## [509] "Short Circuit"
## [510] "The Dark Crystal"
## [511] "Jagged Edge"
## [512] "Young Guns II"
## [513] "The Ringer"
## [514] "Foul Play"
## [515] "2010"
## [516] "Swiss Family Robinson"
## [517] "Marked for Death"
## [518] "Mo' Money"
## [519] "Big Business"
## [520] "Encounter in the Third Dimension"
## [521] "Grand Canyon"
## [522] "Hannah and Her Sisters"
## [523] "Encino Man"
## [524] "Funny Lady"
## [525] "Man of the House"
## [526] "Sado"
## [527] "Manhattan"
## [528] "Magnificent Desolation"
## [529] "Pokemon 2007: Diamond & Pearl"
## [530] "Ricki and the Flash"
## [531] "When in Rome"
## [532] "Dhoom 2"
## [533] "Overheard 2"
## [534] "Three Fugitives"
## [535] "Nobody's Fool"
## [536] "Partners: The Movie"
## [537] "Three Amigos"
## [538] "Roxanne"
## [539] "Romeo and Juliet"
## [540] "Dnevnoy dozor"
## [541] "Doragon B_ru Zetto Kami to Kami"
## [542] "Redi"
## [543] "About Last Night..."
## [544] "Ting Feng Zhe"
## [545] "Running Scared"
## [546] "Pretty in Pink"
## [547] "Bachelor Party"
## [548] "Bang Bang"
## [549] "City Heat"
## [550] "N.L.L: Yeonpyeong Haejeon"
## [551] "The In-Laws"
## [552] "Starting Over"
## [553] "Joe Versus the Volcano"
## [554] "First Sunday"
## [555] "Accepted"
## [556] "Higher Learning"
## [557] "Tequila Sunrise"
## [558] "Mannequin"
## [559] "Negotiator (Bayside Shakedown 3)"
## [560] "The Karate Kid, Part III"
## [561] "Postcards from the Edge"
## [562] "The Dead Pool"
## [563] "Red Dawn"
## [564] "All That Jazz"
## [565] "Mighty Morphin Power Rangers: The Movie"
## [566] "Om Shanti Om"
## [567] "The Wicker Man"
## [568] "Beverly Hills Ninja"
## [569] "St. Elmo's Fire"
## [570] "The Fly"
## [571] "Blind Date"
## [572] "The Money Pit"
## [573] "The Doctor"
## [574] "Revenge of the Pink Panther"
## [575] "The Main Event"
## [576] "Semi-Tough"
## [577] "Out for Justice"
## [578] "Brubaker"
## [579] "The Family That Preys"
## [580] "Uptown Girls"
## [581] "Women Who Flirt"
## [582] "Yi Sheng Yi Shi"
## [583] "Gekij_ban Poketto Monsut_ Adobansu Jener_shon My_ to Had_ no Y_sha Rukario"
## [584] "Verite si je mens! 3 la"
## [585] "It Could Happen To You"
## [586] "Just Cause"
## [587] "South Pacific"
## [588] "Natale in Crociera"
## [589] "K-9"
## [590] "The Getaway"
## [591] "The Sword and the Sorcerer"
## [592] "Best Friends"
## [593] "Dead Again"
## [594] "Gamshijadeul"
## [595] "Tarzan, The Ape Man"
## [596] "Soapdish"
## [597] "Vegas Vacation"
## [598] "To Wong Foo Thanks for Everything, Julie Newmar"
## [599] "Sumbakkokjil"
## [600] "Casanova"
## [601] "Across The Sea of Time"
## [602] "Last Tango in Paris"
## [603] "Always 3 Chome no yuhi '64 3"
## [604] "The Born Losers"
## [605] "Nana"
## [606] "Breakin'"
## [607] "Fly Away Home"
## [608] "Toy Story 3D Double Feature"
## [609] "Murder on the Orient Express"
## [610] "The China Syndrome"
## [611] "Robin Hood: Men in Tights"
## [612] "Other People's Money"
## [613] "Silkwood"
## [614] "Carlito's Way"
## [615] "Down with Love"
## [616] "The Gauntlet"
## [617] "The `Burbs"
## [618] "A Goofy Movie"
## [619] "All of Me"
## [620] "Honeymoon in Vegas"
## [621] "Mermaids"
## [622] "Summer School"
## [623] "Dragon: The Bruce Lee Story"
## [624] "Born to be Wild 3D"
## [625] "The Darjeeling Limited"
## [626] "Shaolin"
## [627] "Gung Ho"
## [628] "Midnight Express"
## [629] "Giant"
## [630] "Red Heat"
## [631] "Richard Pryor Live on the Sunset Strip"
## [632] "Camping 2"
## [633] "L'arnacouer"
## [634] "No Way Out"
## [635] "Places in the Heart"
## [636] "The Bible"
## [637] "Sammy's avonturen 2"
## [638] "The Other Side of the Mountain"
## [639] "Addicted To Love"
## [640] "The Killing Fields"
## [641] "Mississippi Burning"
## [642] "Twentieth Century Boys"
## [643] "Heat"
## [644] "Last Chance Harvey"
## [645] "Na xie nian, wo men yi qi zhui de nu hai"
## [646] "Breach"
## [647] "Shi gu"
## [648] "Ta-weo"
## [649] "Thoroughly Modern Millie"
## [650] "Little Darlings"
## [651] "Muppet Treasure Island"
## [652] "Tommy"
## [653] "Wings of Courage"
## [654] "Excalibur"
## [655] "Like Father Like Son"
## [656] "Potiche"
## [657] "The Edge"
## [658] "Don 2"
## [659] "Universal Soldier"
## [660] "Bambi II"
## [661] "Jane Eyre"
## [662] "Cheech & Chong's Nice Dreams"
## [663] "Magic in the Moonlight"
## [664] "The Pink Panther Strikes Again"
## [665] "Monkey Magic"
## [666] "Adventures in Babysitting"
## [667] "Porky's II: The Next Day"
## [668] "Always zoku san-ch<U+0099>me no y<U+009E>hi"
## [669] "Who's Afraid of Virginia Wolf?"
## [670] "Curly Sue"
## [671] "The Turning Point"
## [672] "The Woman in Black 2: Angel of Death"
## [673] "Nell"
## [674] "...And Justice For All"
## [675] "The Truth About Cats & Dogs"
## [676] "Forget Paris"
## [677] "Teen Wolf"
## [678] "Matilda"
## [679] "Mr. Woodcock"
## [680] "Endless Love"
## [681] "Heroes"
## [682] "October Sky"
## [683] "Sharky's Machine"
## [684] "Feng Shang"
## [685] "*batteries not included"
## [686] "Air America"
## [687] "Haunted Castle"
## [688] "Gantz: Perfect Answer"
## [689] "Fighting"
## [690] "Za majikku aw<U+0089>"
## [691] "The Joy Luck Club"
## [692] "Homeward Bound II: Lost in San Francisco"
## [693] "Tommy Boy"
## [694] "The Accidental Tourist"
## [695] "Bait 3D"
## [696] "Harry and the Hendersons"
## [697] "Murder by Death"
## [698] "Fetih 1453"
## [699] "Fletch Lives"
## [700] "Wan-deuk-i"
## [701] "Alpha Dog"
## [702] "Wild Safari 3D"
## [703] "The Sandlot"
## [704] "The End"
## [705] "La piel que habito"
## [706] "A Walk in the Woods"
## [707] "Black Sheep"
## [708] "The Gods Must Be Crazy"
## [709] "Deo Tereo Raibeu"
## [710] "Justin BieberÕs Believe"
## [711] "Rowdy Rathore"
## [712] "Agneepath"
## [713] "Amazing Grace"
## [714] "Darkman"
## [715] "Bai she chuan shuo"
## [716] "The Accused"
## [717] "Summer of '42"
## [718] "Golmaal 3"
## [719] "Robin Hood"
## [720] "Psycho"
## [721] "Metro"
## [722] "The Apple Dumpling Gang"
## [723] "Bob & Carol & Ted & Alice"
## [724] "Children of a Lesser God"
## [725] "Herbie Rides Again"
## [726] "Jungle Fever"
## [727] "Hard Target"
## [728] "For Richer or Poorer"
## [729] "Daddy's Little Girls"
## [730] "Little Big Man"
## [731] "Benvenuti al nord"
## [732] "Yomei Ikkagetsu no Hanayome"
## [733] "Three Warriors on Distant Shores"
## [734] "King Ralph"
## [735] "LOL (Laughing Out Loud)"
## [736] "The Seeker: The Dark is Rising"
## [737] "Sky of Love"
## [738] "Mrs Brown's Boys D'Movie"
## [739] "Eddie"
## [740] "Thrill Ride: The Science of Fun"
## [741] "Robot"
## [742] "Bustin' Loose"
## [743] "Salmon Fishing in the Yemen"
## [744] "The Great Muppet Caper"
## [745] "The Secret Garden"
## [746] "Chimpanzee"
## [747] "True Grit"
## [748] "Those Magnificent Men In Their Flying..."
## [749] "Camelot"
## [750] "Les Profs"
## [751] "Picture Perfect"
## [752] "Paper Moon"
## [753] "Vysotsky. Spasibo, Chto Zhivoi"
## [754] "Zatoichi"
## [755] "Ryan's Daughter"
## [756] "Murphy's Romance"
## [757] "Powder"
## [758] "Young Doctors in Love"
## [759] "Home Alone III"
## [760] "Major League II"
## [761] "The Fighting Temptations"
## [762] "Pathfinder"
## [763] "Sleepwalkers"
## [764] "The Battle of Red Cliff"
## [765] "Psycho II"
## [766] "The Champ"
## [767] "Jie jiu wu xian sheng"
## [768] "Mortdecai"
## [769] "A Wedding Invitation"
## [770] "Absence of Malice"
## [771] "Say Yes"
## [772] "Weekend at Bernie's"
## [773] "The World According to Garp"
## [774] "Being There"
## [775] "Blown Away"
## [776] "Free Willy 2: The Adventure Home"
## [777] "The Chaser"
## [778] "Point of No Return"
## [779] "The Sand Pebbles"
## [780] "Chapter Two"
## [781] "Airport '77"
## [782] "Rollerball"
## [783] "Freebie and the Bean"
## [784] "White Christmas"
## [785] "Neighbors"
## [786] "Going in Style"
## [787] "7 Zwerge - Der Wald Ist Nicht Genug"
## [788] "Lean on Me"
## [789] "Green Card"
## [790] "Madeline"
## [791] "A Perfect World"
## [792] "Far from the Madding Crowd"
## [793] "Arthur and the War of Two Worlds"
## [794] "Blank Check"
## [795] "The Parent Trap"
## [796] "Taepung"
## [797] "Una Moglie Bellissima"
## [798] "Race 2"
## [799] "Sinsegye"
## [800] "Nothing in Common"
## [801] "Doraemon: Nobita to Midori no kyojinten"
## [802] "Major Payne"
## [803] "Pacific Heights"
## [804] "Singh is Kinng"
## [805] "Ai"
## [806] "Wa Pei"
## [807] "Easy Money"
## [808] "Guan yun chang"
## [809] "Yeok-rin"
## [810] "Meitantei Konan Zekkai no Puraib_to Ai"
## [811] "Shoot to Kill"
## [812] "Fools Rush In"
## [813] "Wu Xia"
## [814] "Quan Min Mu Ji"
## [815] "Zindagi Na Milegi Dobara"
## [816] "Romy and Michele's High School Reunion"
## [817] "Bugs!"
## [818] "Can't Buy Me Love"
## [819] "Do-ga-ni"
## [820] "3 Ninjas"
## [821] "Madonna: Truth or Dare"
## [822] "House Calls"
## [823] "The Shaggy Dog"
## [824] "James and the Giant Peach"
## [825] "The Guns of Navarone"
## [826] "Mr. Magoo"
## [827] "In the Army Now"
## [828] "Nuts"
## [829] "The Adventures of the Wilderness Family"
## [830] "Samson and Delilah"
## [831] "Ghosts of the Abyss"
## [832] "Baramgwa hamjje sarajida"
## [833] "Starman"
## [834] "Carnal Knowledge"
## [835] "Hoosiers"
## [836] "Jodhaa Akbar"
## [837] "Final Analysis"
## [838] "Singham"
## [839] "Nae Anaeui Modeun Geot"
## [840] "Drop Zone"
## [841] "Galapagos"
## [842] "L.A. Story"
## [843] "\\Cop and ½\\"
## [844] "High Road to China"
## [845] "The Carpetbaggers"
## [846] "Dirty Mary, Crazy Larry"
## [847] "Legend"
## [848] "I Give It a Year"
## [849] "The Cheap Detective"
## [850] "Sin-ui Hansu"
## [851] "Marathon Man"
## [852] "Ernest Saves Christmas"
## [853] "Dirty Harry"
## [854] "Hu<U+0088> B<U+0093>"
## [855] "That Darn Cat!"
## [856] "Police Academy 4: Citizens on Patrol"
## [857] "Pokemon 4Ever"
## [858] "Herbie Goes to Monte Carlo"
## [859] "Slap Shot"
## [860] "Out to Sea"
## [861] "The Hindenburg"
## [862] "Manatsu no Houteishiki"
## [863] "The Other Sister"
## [864] "Playing for Keeps"
## [865] "Uncommon Valor"
## [866] "Cirque du Soleil - Journey of Man"
## [867] "Sou Sou"
## [868] "Rajneeti"
## [869] "Internal Affairs"
## [870] "Never Cry Wolf"
## [871] "Bol Bachchan"
## [872] "Rear Window"
## [873] "Teachers"
## [874] "The Last Mimzy"
## [875] "Bumchoiwaui junjaeng"
## [876] "Samiy Luchshiy Film"
## [877] "Ji Jie Hao"
## [878] "Desperately Seeking Susan"
## [879] "Daai mo seut si"
## [880] "Memphis Belle"
## [881] "Cannonball Run II"
## [882] "Welcome"
## [883] "Serpico"
## [884] "Cadillac Man"
## [885] "L'Ours"
## [886] "The Pirate Fairy"
## [887] "The Jazz Singer"
## [888] "Guarding Tess"
## [889] "Legenda No. 17"
## [890] "Paulie"
## [891] "Relatos salvages"
## [892] "The Lord of the Rings"
## [893] "The Outlaw Josey Wales"
## [894] "Now and Then"
## [895] "Hors de Prix"
## [896] "You're Next"
## [897] "Doraemon: Nobita's Great Adventure into the Underworld"
## [898] "Jing mo fung wan: Chen Zhen"
## [899] "Housefull 2"
## [900] "Shoot 'Em Up"
## [901] "The Dream Team"
## [902] "Species 2"
## [903] "Overboard"
## [904] "Bride Wars"
## [905] "Yatt<U+0088>man"
## [906] "Gekijyohan SPEC Ten"
## [907] "Prizzi's Honor"
## [908] "El Cid"
## [909] "A Clockwork Orange"
## [910] "Crimson Peak"
## [911] "Tim Burton's The Nightmare Before Christmas 3D"
## [912] "An American Werewolf in Paris"
## [913] "Gonggongui jeog 3"
## [914] "First Kid"
## [915] "Soul Man"
## [916] "Upside Down"
## [917] "House Party"
## [918] "Kabhi Khushi Kabhie Gham"
## [919] "Bokura ga ita Zenpen"
## [920] "Houseguest"
## [921] "Deceived"
## [922] "Sayonara"
## [923] "Wildcats"
## [924] "Necessary Roughness"
## [925] "I.Q."
## [926] "All Dogs Go To Heaven"
## [927] "My Life"
## [928] "Protocol"
## [929] "Micki + Maude"
## [930] "Torrente 4 (3D)"
## [931] "Demetrius and the Gladiators"
## [932] "Ocean Wonderland"
## [933] "Son in Law"
## [934] "Mighty Aphrodite"
## [935] "Extreme"
## [936] "Freaky Friday"
## [937] "Ali G Indahouse"
## [938] "Yeongashi"
## [939] "Yours, Mine and Ours"
## [940] "Erinnerungen an die Zukunft"
## [941] "Mr. Holmes"
## [942] "Cactus Flower"
## [943] "Murder at 1600"
## [944] "Betrayed"
## [945] "De rouille et dÕos"
## [946] "Only When I Laugh"
## [947] "Bratz"
## [948] "Nobo no shiro"
## [949] "Kokowaah 2"
## [950] "Agnes of God"
## [951] "Down Periscope"
## [952] "Peyton Place"
## [953] "Company 9"
## [954] "Jumpin' Jack Flash"
## [955] "Candyman"
## [956] "Funny Farm"
## [957] "The Muppets Take Manhattan"
## [958] "Talaash"
## [959] "A Tale of Mari and Three Puppies"
## [960] "Beauty and the Beast (IMAX)"
## [961] "My Father the Hero"
## [962] "Mimic"
## [963] "Billy Madison"
## [964] "__ (Jik zin)"
## [965] "Tin Men"
## [966] "In America"
## [967] "The Absent Minded Professor"
## [968] "Women's Team Handball"
## [969] "In Love and War"
## [970] "The Great Race"
## [971] "Heartburn"
## [972] "Xi Yang Yang Yu Hui Tai Lang Zhi Kaixin Chuang Long Nian"
## [973] "The Woman in Red"
## [974] "Le pr<U+008E>nom"
## [975] "Irma La Douce"
## [976] "The Magdalene Sisters"
## [977] "Alien Nation"
## [978] "Sophie's Choice"
## [979] "Baby Boom"
## [980] "Black Widow"
## [981] "Race"
## [982] "Fallen"
## [983] "The Morning After"
## [984] "Qi<U+0088>n N_ Y_u H<U+009C>n"
## [985] "Don't Tell Mom the Babysitter's Dead"
## [986] "Problem Child 2"
## [987] "Against All Odds"
## [988] "In the Name of the Father"
## [989] "Ivan Tsarevich i Seryy Volk"
## [990] "Te shu shen fen"
## [991] "Ernest Goes to Jail"
## [992] "The Exorcist III"
## [993] "Thunderbolt and Lightfoot"
## [994] "Little Man Tate"
## [995] "Les Profs 2"
## [996] "Invasion of the Body Snatchers"
## [997] "Fright Night"
## [998] "Before the Devil Knows You're Dead"
## [999] "Recep Ivedik"
## [1000] "Navy SEALs"
## [1001] "Airplane II: The Sequel"
## [1002] "Tai Chi Zero"
## [1003] "Tees Maar Khan"
## [1004] "De l'autre c<U+0099>t<U+008E> du p<U+008E>riph"
## [1005] "Quiz Show"
## [1006] "The Man Without a Face"
## [1007] "Bushi no ichibun"
## [1008] "Gorillas in the Mist"
## [1009] "Operation Dumbo Drop"
## [1010] "The Other Side of Midnight"
## [1011] "Triumph in the Skies"
## [1012] "schlussmacher"
## [1013] "Jesus Christ Superstar"
## [1014] "The Emerald Forest"
## [1015] "Pina"
## [1016] "Lucky Lady"
## [1017] "Bou Chau Mai Sing"
## [1018] "Tsurugidake: Ten no Ki"
## [1019] "Vacancy"
## [1020] "Huang Jin Da Jie An"
## [1021] "The In-Laws"
## [1022] "Kambakkht Ishq"
## [1023] "Moscow on the Hudson"
## [1024] "Aku no Kyoten"
## [1025] "To the Fore"
## [1026] "Eiga Kaibutsu-kun"
## [1027] "Bronco Billy"
## [1028] "Dolores Claiborne"
## [1029] "Anfea: The Answer"
## [1030] "Dead Presidents"
## [1031] "Spring Break"
## [1032] "Ong-Bak"
## [1033] "Damien: Omen II"
## [1034] "An Unmarried Woman"
## [1035] "Adrenaline Rush: The Science of Risk"
## [1036] "The Flamingo Kid"
## [1037] "Bei Tou Zou De Wu Nian"
## [1038] "Tom and Huck"
## [1039] "Lissi und der wilde Kaiser"
## [1040] "Da Shang Hai"
## [1041] "American Ultra"
## [1042] "Magic"
## [1043] "Beyond and Back"
## [1044] "Striking Distance"
## [1045] "OSS 117"
## [1046] "Jacob's Ladder"
## [1047] "Santa Claus"
## [1048] "Geonchukhakgaeron"
## [1049] "Good Burger"
## [1050] "Class Action"
## [1051] "Sixteen Candles"
## [1052] "The Owl and the Pussycat"
## [1053] "Love Aaj Kal"
## [1054] "Russian Dolls"
## [1055] "Two of a Kind"
## [1056] "Eight Crazy Nights"
## [1057] "The Great Mouse Detective"
## [1058] "Baksoogundal"
## [1059] "My Blue Heaven"
## [1060] "How to Make an American Quilt"
## [1061] "Oscar"
## [1062] "The Invisible"
## [1063] "Ernest Goes to Camp"
## [1064] "Body Heat"
## [1065] "Xiao Shi De Zi Dan"
## [1066] "Hoodlum"
## [1067] "Il y a longtemps que je t'aime"
## [1068] "Hum Aapke Hain Kaun...!"
## [1069] "Moteki"
## [1070] "Henry & June"
## [1071] "Caligula"
## [1072] "Du zhan"
## [1073] "Summer Rental"
## [1074] "Boys on the Side"
## [1075] "Circle of Friends"
## [1076] "Auntie Mame"
## [1077] "Operation Petticoat"
## [1078] "Les femmes du 6me <U+008E>tage"
## [1079] "La misma luna"
## [1080] "Turkisch fur Anfanger"
## [1081] "Platinum Data"
## [1082] "Kuai Le Dao Jia"
## [1083] "Benny & Joon"
## [1084] "Seems Like Old Times"
## [1085] "Chinatown"
## [1086] "The Cutting Edge"
## [1087] "Iron Eagle"
## [1088] "The Program"
## [1089] "Ghost Dad"
## [1090] "The Wanderers"
## [1091] "Same Time, Next Year"
## [1092] "Lewis & Clark: Great Journey West"
## [1093] "The Russia House"
## [1094] "Goodbye, Columbus"
## [1095] "D3: The Mighty Ducks"
## [1096] "Crimes of the Heart"
## [1097] "Paris"
## [1098] "Raising Arizona"
## [1099] "Missing in Action"
## [1100] "Hitchcock"
## [1101] "Dr. T and the Women"
## [1102] "Frankie and Johnny"
## [1103] "Xanadu"
## [1104] "Rudy"
## [1105] "Santa vs. The Snowman"
## [1106] "Desu Noto 3: L: Change the World"
## [1107] "Raia Gemu Saisei"
## [1108] "Prelude to a Kiss"
## [1109] "Thunderheart"
## [1110] "Pure Luck"
## [1111] "Seupai"
## [1112] "Guilty as Sin"
## [1113] "The People Under the Stairs"
## [1114] "The French Lieutenant's Woman"
## [1115] "The World's Greatest Athlete"
## [1116] "Lt. Robin Crusoe, U.S.N."
## [1117] "Lionheart"
## [1118] "My Tutor"
## [1119] "The Care Bears Movie"
## [1120] "Victor/Victoria"
## [1121] "Captain Ron"
## [1122] "The Warriors"
## [1123] "My Bodyguard"
## [1124] "Cassandra's Dream"
## [1125] "Disco"
## [1126] "Red Corner"
## [1127] "Black Lightning"
## [1128] "License to Drive"
## [1129] "Blue Chips"
## [1130] "The Lion in Winter"
## [1131] "Hamlet"
## [1132] "For the Love of Benji"
## [1133] "Empire of the Sun"
## [1134] "Norma Rae"
## [1135] "NASCAR: The IMAX Experience"
## [1136] "The Last Starfighter"
## [1137] "The Bermuda Triangle"
## [1138] "Bulletproof"
## [1139] "To Be and To Have"
## [1140] "The Sword in the Stone"
## [1141] "House"
## [1142] "Son of Flubber"
## [1143] "Nosotros Los Nobles"
## [1144] "In Search of Historic Jesus"
## [1145] "Death Wish"
## [1146] "Meitantei Conan: Senritsu no furu sukoa"
## [1147] "Love Don't Cost a Thing"
## [1148] "Herut<U+0089> sukerut<U+0089>"
## [1149] "Partner"
## [1150] "Biker Boyz"
## [1151] "Io, Loro e Lara"
## [1152] "Only the Lonely"
## [1153] "A Soldier's Story"
## [1154] "Il Postino"
## [1155] "Amy"
## [1156] "The Caine Mutiny"
## [1157] "Fair*Game"
## [1158] "Son of Sardaar"
## [1159] "Se Eu Fosse Voce 2"
## [1160] "Shining Through"
## [1161] "7 gwanggu"
## [1162] "Lock Up"
## [1163] "Leap of Faith"
## [1164] "Cousins"
## [1165] "The Green Berets"
## [1166] "The Russians Are Coming, the Russians Are Coming"
## [1167] "Class"
## [1168] "Como agua para chocolate"
## [1169] "The Rookie"
## [1170] "Wild Child"
## [1171] "The Quest"
## [1172] "Consenting Adults"
## [1173] "The Rum Diary"
## [1174] "Blackbeard's Ghost"
## [1175] "Desu Noto"
## [1176] "The Man Who Wasn't There"
## [1177] "Married to the Mob"
## [1178] "Enter the Dragon"
## [1179] "Eiga doraemon: Shin. Nobita no uch<U+009E> kaitakushi"
## [1180] "Tough Guys"
## [1181] "Toys"
## [1182] "A Very Brady Sequel"
## [1183] "Daensing Kwin"
## [1184] "Cold Creek Manor"
## [1185] "Penelope"
## [1186] "The First Power"
## [1187] "Waist Deep"
## [1188] "Rhinestone"
## [1189] "The King and I"
## [1190] "The Bells of St. Mary's"
## [1191] "The Freshman"
## [1192] "The Black Cauldron"
## [1193] "Revenge of the Nerds II: Nerds in Paradise"
## [1194] "Happy-Go-Lucky"
## [1195] "Nazotoki Wa Dinner No Ato De"
## [1196] "Fame"
## [1197] "Straight Talk"
## [1198] "Mister Roberts"
## [1199] "Cujo"
## [1200] "Coneheads"
## [1201] "The Divine Weapon"
## [1202] "Oh God, You Devil!"
## [1203] "FerngullyÉ The Last Rainforest"
## [1204] "Top Secret!"
## [1205] "The Banquet"
## [1206] "Weekend Pass"
## [1207] "Punchline"
## [1208] "Christine"
## [1209] "Night Shift"
## [1210] "Pokemon Advanced Generation 2006"
## [1211] "Dracula"
## [1212] "The World's Greatest Lover"
## [1213] "High School High"
## [1214] "Nosso Lar"
## [1215] "Mr. Baseball"
## [1216] "Short Circuit 2"
## [1217] "The Hitcher"
## [1218] "Grand Prix"
## [1219] "Friends Mononoke-jima no Naki"
## [1220] "Le Grand Chef"
## [1221] "The Air Up There"
## [1222] "Bu-reo-jin hwa-sal"
## [1223] "Hanbando"
## [1224] "Hotaru no Hikari"
## [1225] "Jason's Lyric"
## [1226] "Cat Ballou"
## [1227] "Intersection"
## [1228] "Iron Will"
## [1229] "Dead Silence"
## [1230] "You Are the Apple of My Eye"
## [1231] "Cocktail"
## [1232] "Ricochet"
## [1233] "Speechless"
## [1234] "Fear"
## [1235] "Things Are Tough All Over"
## [1236] "The Last Picture Show"
## [1237] "Porky's Revenge"
## [1238] "The Final Conflict"
## [1239] "Chilgeup gongmuwon"
## [1240] "The Groove Tube"
## [1241] "Alien Adventure"
## [1242] "The Beach Girls"
## [1243] "Some Kind of Hero"
## [1244] "F/X"
## [1245] "Code of Silence"
## [1246] "Delhi Belly"
## [1247] "The Incredible Shrinking Woman"
## [1248] "Mobsters"
## [1249] "Critical Condition"
## [1250] "Six Pack"
## [1251] "An American Tail: Fievel Goes West"
## [1252] "Sudden Death"
## [1253] "Tarzan"
## [1254] "A Force of One"
## [1255] "Jag ar Nyfiken - en film i gult"
## [1256] "The People vs. Larry Flynt"
## [1257] "Juice"
## [1258] "Gekijoban Kamen Raida Ozu Wandafuru: Shogun to Niju-ichi no Koa Medaru/Kaizoku Sentai Gokaija Za Mubi Sora Tobu Yureisen"
## [1259] "Another Stakeout"
## [1260] "Tess"
## [1261] "Reality Bites"
## [1262] "Kon-Tiki"
## [1263] "Booty Call"
## [1264] "Saawariya"
## [1265] "With Honors"
## [1266] "Say AnythingÉ"
## [1267] "The Presidio"
## [1268] "Tai Chi Hero"
## [1269] "Breaking Away"
## [1270] "Outland"
## [1271] "The Adventure of Sherlock Holmes' Smarter Brother"
## [1272] "The Great Waldo Pepper"
## [1273] "Shane"
## [1274] "Ho Voglia Di Te"
## [1275] "Barefoot in the Park"
## [1276] "Soshite chichi ni naru"
## [1277] "Rubbeldiekatz"
## [1278] "Unfaithfully Yours"
## [1279] "Breathless"
## [1280] "Volunteers"
## [1281] "Altered States"
## [1282] "F/X2"
## [1283] "Child's Play 3"
## [1284] "Melinda and Melinda"
## [1285] "Innerspace"
## [1286] "Buena Vista Social Club"
## [1287] "Cruising"
## [1288] "Color of Night"
## [1289] "Betsy's Wedding"
## [1290] "Gone Fishin'"
## [1291] "The Cowboy Way"
## [1292] "Lady Sings the Blues"
## [1293] "Fire in the Sky"
## [1294] "Prt-<U+0088>-Porter"
## [1295] "Don't Be a Menace to South Central While Drinking Your Juice in the Hood"
## [1296] "Shackleton's Antarctic Adventure"
## [1297] "Tucker: The Man and His Dream"
## [1298] "Neuilly Sa Mre"
## [1299] "Kuffs"
## [1300] "Go-ji-jeon"
## [1301] "The Serpent and the Rainbow"
## [1302] "8 Seconds"
## [1303] "Jetsons: The Movie"
## [1304] "The Professionals"
## [1305] "View from the Top"
## [1306] "Police Academy 5: Assignment: Miami Beach"
## [1307] "Dolce Vita, La"
## [1308] "This is the Army"
## [1309] "It Takes Two"
## [1310] "The Babe"
## [1311] "Corrina, Corrina"
## [1312] "Un gallo con muchos huevos"
## [1313] "Andarushia: Megami No Houfuku"
## [1314] "The Fly II"
## [1315] "Stella"
## [1316] "Guan lan"
## [1317] "An Innocent Man"
## [1318] "The Human Stain"
## [1319] "Dad"
## [1320] "Deep Blue"
## [1321] "71: Into the Fire"
## [1322] "Joe"
## [1323] "Le renard et l'enfant"
## [1324] "Only You"
## [1325] "Little Giants"
## [1326] "Posse"
## [1327] "Kwik"
## [1328] "The Principal"
## [1329] "Deathtrap"
## [1330] "House Party 3"
## [1331] "Auf der anderen Seite"
## [1332] "Ladies in Lavender"
## [1333] "The Fox"
## [1334] "Detective Conan: Jolly Roger in Deep Azure"
## [1335] "Mother"
## [1336] "That's Entertainment"
## [1337] "Blaze"
## [1338] "North Dallas Forty"
## [1339] "Johnny Mnemonic"
## [1340] "The Octagon"
## [1341] "The Seduction of Joe Tynan"
## [1342] "The Jolson Story"
## [1343] "Sniper"
## [1344] "En kongelig aff¾re"
## [1345] "Bed of Roses"
## [1346] "To the Arctic 3D"
## [1347] "The Eyes of Laura Mars"
## [1348] "Untamed Heart"
## [1349] "The Odd Couple II"
## [1350] "The Seventh Sign"
## [1351] "Alfie"
## [1352] "Kazaam"
## [1353] "Paternity"
## [1354] "What's New, Pussycat"
## [1355] "El Nino"
## [1356] "Across the Great Divide"
## [1357] "Macon County Line"
## [1358] "The Rebound"
## [1359] "The Believers"
## [1360] "Pillow Talk"
## [1361] "Madhouse"
## [1362] "Grande, grosso e Verdone"
## [1363] "Hello Again"
## [1364] "Paradise"
## [1365] "The Boatniks"
## [1366] "OMG: Oh My God"
## [1367] "I Am Curious"
## [1368] "Detroit Metal City"
## [1369] "Flight of the Navigator"
## [1370] "Blame it on Rio"
## [1371] "Year of the Dragon"
## [1372] "Some Kind of Wonderful"
## [1373] "Suspect"
## [1374] "Project X"
## [1375] "Winx Club - Il Segreto Del Regno Perduto"
## [1376] "Paco to Maho no Ehon"
## [1377] "Singles"
## [1378] "Casualties of War"
## [1379] "Taking Care of Business"
## [1380] "Hey Baby"
## [1381] "In Search of Castaways"
## [1382] "Desert Flower"
## [1383] "Best Defense"
## [1384] "Dorian Gray"
## [1385] "Rockstar"
## [1386] "Good Guys Wear Black"
## [1387] "Love Affair"
## [1388] "Sadako 3D"
## [1389] "Crimes and Misdemeanors"
## [1390] "That Darn Cat"
## [1391] "Cocoon: The Return"
## [1392] "Dead Men Don't Wear Plaid"
## [1393] "Getting Even With Dad"
## [1394] "Bears"
## [1395] "Skin Deep"
## [1396] "The Sure Thing"
## [1397] "Keeping Mum"
## [1398] "Gone"
## [1399] "Five Easy Pieces"
## [1400] "DuckTales: The Movie - Treasure of the Lost Lamp"
## [1401] "Private Lessons"
## [1402] "Milk Money"
## [1403] "The Private Eyes"
## [1404] "Hardly Working"
## [1405] "Windwalker"
## [1406] "Death on the Nile"
## [1407] "Ice Castles"
## [1408] "Ann och Eve - de Erotiska"
## [1409] "Ensemble, c'est tout"
## [1410] "Used People"
## [1411] "Bokura ga Ita Kohen"
## [1412] "The Pom Pom Girls"
## [1413] "Delhi 6"
## [1414] "African Cats"
## [1415] "The Crow: City of Angels"
## [1416] "Bedknobs and Broomsticks"
## [1417] "Sibling Rivalry"
## [1418] "Mortal Thoughts"
## [1419] "Honeysuckle Rose"
## [1420] "The Boston Strangler"
## [1421] "For Whom the Bell Tolls"
## [1422] "Gaku: Minna no Yama"
## [1423] "Born Yesterday"
## [1424] "The Big Green"
## [1425] "Sarkar Raj"
## [1426] "The Betsy"
## [1427] "High Security Vacations"
## [1428] "For the Boys"
## [1429] "Vacations"
## [1430] "Heavy Weights"
## [1431] "Unfair: The Movie"
## [1432] "That Touch of Mink"
## [1433] "Scusa ma ti chiamo amore"
## [1434] "CB4"
## [1435] "El Clan"
## [1436] "Frantic"
## [1437] "Max Dugan Returns"
## [1438] "Alice Doesn't Live Here Anymore"
## [1439] "Eye of the Needle"
## [1440] "Deliver Us From Eva"
## [1441] "Take This Job and Shove It"
## [1442] "J<U+009E>san-nin no shikaku"
## [1443] "Wait Until Dark"
## [1444] "Hot DogÉ The Movie"
## [1445] "Lassiter"
## [1446] "Johnny Be Good"
## [1447] "Angel"
## [1448] "White Palace"
## [1449] "Ragtime"
## [1450] "My Favorite Year"
## [1451] "Tristan & Isolde"
## [1452] "Above the Law"
## [1453] "Gegege No Kitar<U+0099>"
## [1454] "Born in East L.A."
## [1455] "Jo Jo Dancer, Your Life is Calling"
## [1456] "Murder in the First"
## [1457] "Shenandoah"
## [1458] "A Bronx Tale"
## [1459] "Annapolis"
## [1460] "The Mission"
## [1461] "No Escape"
## [1462] "Her Alibi"
## [1463] "Angel Heart"
## [1464] "Sidekicks"
## [1465] "That Old Feeling"
## [1466] "The Falcon and the Snowman"
## [1467] "Johnny Dangerously"
## [1468] "The NeverEnding Story II: The Next Chapter"
## [1469] "Von Ryan's Express"
## [1470] "The Valachi Papers"
## [1471] "Pet Sematary II"
## [1472] "Firehouse Dog"
## [1473] "Freejack"
## [1474] "Judy Moody and the Not Bummer Summer"
## [1475] "The Delta Force"
## [1476] "Diabolique"
## [1477] "Everyone's Hero"
## [1478] "For Keeps?"
## [1479] "Herbie Goes Bananas"
## [1480] "Which Way Is Up?"
## [1481] "W.W. and the Dixie Dancekings"
## [1482] "Island of Lemurs: Madagascar"
## [1483] "Lover Come Back"
## [1484] "All the Right Moves"
## [1485] "Jury Duty"
## [1486] "Looking for Mr. Goodbar"
## [1487] "Sounder"
## [1488] "Sugar and Spice"
## [1489] "Georgy Girl"
## [1490] "Jaane Tu Ya Jaane Na"
## [1491] "Geronimo: An American Legend"
## [1492] "Le h<U+008E>risson"
## [1493] "Hollywoodland"
## [1494] "Lightning Jack"
## [1495] "A Touch of Class"
## [1496] "Valley Girl"
## [1497] "Andre"
## [1498] "Kur<U+0099>zu zero"
## [1499] "Blink"
## [1500] "7-gwang-goo"
## [1501] "Rough Cut"
## [1502] "Emperor"
## [1503] "The Hunter"
## [1504] "The Fabulous Baker Boys"
## [1505] "Deep Cover"
## [1506] "True Crime"
## [1507] "Reservation Road"
## [1508] "Beat Street"
## [1509] "To Live and Die in L.A."
## [1510] "My Girl 2"
## [1511] "Shocker"
## [1512] "National Lampoon's Class Reunion"
## [1513] "The Life and Times of Judge Roy Bean"
## [1514] "Miracle on 1st Street"
## [1515] "The Frighteners"
## [1516] "Krull"
## [1517] "Belle"
## [1518] "The War"
## [1519] "Heart and Souls"
## [1520] "Spacehunter: Adventures in the Forbidden Zone"
## [1521] "Terminal Velocity"
## [1522] "Monkey Kingdom"
## [1523] "Candy"
## [1524] "A Change of Seasons"
## [1525] "Sergeant York"
## [1526] "Die Wilden Kerle 4"
## [1527] "The Big Easy"
## [1528] "Monkey Trouble"
## [1529] "Burglar"
## [1530] "MacArthur"
## [1531] "The Silencers"
## [1532] "Masters of the Universe"
## [1533] "Weird Science"
## [1534] "Going My Way"
## [1535] "Supercop"
## [1536] "Dasavatharam"
## [1537] "Kitaro And The Millennium Curse"
## [1538] "Cool Hand Luke"
## [1539] "Raw Deal"
## [1540] "Follow Me Boys"
## [1541] "Ghost Story"
## [1542] "Un secret"
## [1543] "Defending Your Life"
## [1544] "Richard Pryor Here and Now"
## [1545] "The Blue Max"
## [1546] "Fire Down Below"
## [1547] "The Guardian"
## [1548] "D.C. Cab"
## [1549] "Death Wish 3"
## [1550] "Prancer"
## [1551] "Death Wish II"
## [1552] "No Holds Barred"
## [1553] "The Prophecy"
## [1554] "Running Turtle"
## [1555] "The Day of the Jackal"
## [1556] "Raaz 3: The Third Dimension"
## [1557] "She's Having a Baby"
## [1558] "Above the Rim"
## [1559] "Purinsesu Toyotomi"
## [1560] "Devil in a Blue Dress"
## [1561] "Missing"
## [1562] "The Devil and Max Devlin"
## [1563] "Sinbad and the Eye of the Tiger"
## [1564] "Breakout"
## [1565] "Our Man Flint"
## [1566] "Forever Amber"
## [1567] "Mom and Dad"
## [1568] "Tyler Perry's The Single Moms Club"
## [1569] "Caveman"
## [1570] "Armed and Dangerous"
## [1571] "Next of Kin"
## [1572] "Hero At Large"
## [1573] "Ajab Prem Ki Ghazab Kahani"
## [1574] "Cai Shen Ke Zhan"
## [1575] "Dance With Me"
## [1576] "Gorky Park"
## [1577] "Crossing Delancey"
## [1578] "The Next Karate Kid"
## [1579] "Heroine"
## [1580] "Kiss Me Goodbye"
## [1581] "The Gospel"
## [1582] "Blitz"
## [1583] "Once Upon a Time in Mumbai"
## [1584] "Anjaana Anjaani"
## [1585] "Tazza: The High Rollers"
## [1586] "Wes Craven's Wishmaster"
## [1587] "Double Dhamaal"
## [1588] "Fanaa"
## [1589] "Avalon"
## [1590] "The Lion King (IMAX)"
## [1591] "Boule et Bill"
## [1592] "I Love You to Death"
## [1593] "Continental Divide"
## [1594] "Billy Bathgate"
## [1595] "Murder 2"
## [1596] "Switch"
## [1597] "The Getaway"
## [1598] "The Wild Angels"
## [1599] "Corvette Summer"
## [1600] "Facing Window"
## [1601] "Youngblood"
## [1602] "Rocket Man"
## [1603] "Married to the Mafia 3"
## [1604] "Catch and Release"
## [1605] "The Bonfire of the Vanities"
## [1606] "Mad Love"
## [1607] "Still Smokin"
## [1608] "The Mod Squad"
## [1609] "Tales from the Darkside: The Movie"
## [1610] "Death Warrant"
## [1611] "Pulse: A Stomp Odyssey"
## [1612] "Mr. Destiny"
## [1613] "Bridge of Spies"
## [1614] "The Witches"
## [1615] "She-Devil"
## [1616] "Primeval"
## [1617] "Revenge"
## [1618] "The Dreamers"
## [1619] "Welcome Stranger"
## [1620] "Maiko haaaan!!!"
## [1621] "Raavan"
## [1622] "Solomon Kane"
## [1623] "Quick Change"
## [1624] "Benji the Hunted"
## [1625] "Celda 211"
## [1626] "First Family"
## [1627] "Bad Girls"
## [1628] "Needful Things"
## [1629] "Miss Pettigrew Lives for a Day"
## [1630] "Paradaisu Kisu"
## [1631] "Big Top Pee-Wee"
## [1632] "The Madness of King George"
## [1633] "Muriel's Wedding"
## [1634] "Bhool Bhulaiyaa"
## [1635] "Paradise Murdered"
## [1636] "King Solomon's Mines"
## [1637] "Zapped!"
## [1638] "Trick 2"
## [1639] "Mother, Jugs & Speed"
## [1640] "The V.I.P.s"
## [1641] "Pete 'n' Tillie"
## [1642] "Breakin' 2: Electric Boogaloo"
## [1643] "Ek Main Aur Ekk Tu"
## [1644] "Matrimonio alle Bahamas"
## [1645] "Chak De India"
## [1646] "The Music Man"
## [1647] "The Meaning of Life"
## [1648] "Baar<U+0093>a"
## [1649] "Mai wei"
## [1650] "S.O.B."
## [1651] "Dogville"
## [1652] "Once Around"
## [1653] "Music of the Heart"
## [1654] "Pink Floyd: The Wall"
## [1655] "Enigma"
## [1656] "All I Want For Christmas"
## [1657] "Going by the Book"
## [1658] "Ladybugs"
## [1659] "Prom Night"
## [1660] "Threesome"
## [1661] "Not Without My Daughter"
## [1662] "Over the Top"
## [1663] "The Sixth Man"
## [1664] "Fire Birds"
## [1665] "Les emotifs anonymes"
## [1666] "I Hate Luv Storys"
## [1667] "Orca"
## [1668] "Indian Summer"
## [1669] "School Ties"
## [1670] "Men At Work"
## [1671] "Deutschland: Ein Sommermarchen"
## [1672] "Reversal of Fortune"
## [1673] "Khiladi 786"
## [1674] "Iron Monkey"
## [1675] "Arthur 2: On the Rocks"
## [1676] "Case d<U+008E>part"
## [1677] "The Substitute"
## [1678] "The Nude Bomb"
## [1679] "Thank You"
## [1680] "Freedomland"
## [1681] "Winning"
## [1682] "A Life Less Ordinary"
## [1683] "Educating Rita"
## [1684] "Kiss of the Spider Woman"
## [1685] "Enfin Veuve"
## [1686] "Children of the Corn"
## [1687] "Love & Mercy"
## [1688] "Cilada.com"
## [1689] "Wild at Heart"
## [1690] "Bikur Ha-Tizmoret"
## [1691] "Willard"
## [1692] "The Vanishing"
## [1693] "Chances Are"
## [1694] "Deux jours <U+0088> Paris"
## [1695] "Jackie Chan's First Strike"
## [1696] "Oh, God! Book II"
## [1697] "McLintock!"
## [1698] "King of Kings"
## [1699] "Psycho III"
## [1700] "A Kiss Before Dying"
## [1701] "Madeo"
## [1702] "America: Imagine a World Without Her"
## [1703] "Night of the Comet"
## [1704] "Los ojos de Julia"
## [1705] "Remo Williams: The Adventure Begins"
## [1706] "M<U+008A>nnersache"
## [1707] "City of Joy"
## [1708] "The Buddy Holly Story"
## [1709] "Rapid Fire"
## [1710] "Dostana"
## [1711] "Surviving Christmas"
## [1712] "Excess Baggage"
## [1713] "On His Majesty's Secret Service"
## [1714] "The Mosquito Coast"
## [1715] "Blue Skies"
## [1716] "Grease 2"
## [1717] "Supergirl"
## [1718] "Z"
## [1719] "The Wizard"
## [1720] "Baby: Secret of the Lost Legend"
## [1721] "The Chamber"
## [1722] "Mere Brother Ki Dulhan"
## [1723] "Sweet Liberty"
## [1724] "A Chorus Line"
## [1725] "Scanners"
## [1726] "The Eiger Sanction"
## [1727] "Highlander II: The Quickening"
## [1728] "Prince of Darkness"
## [1729] "The Snows of Kilimanjaro"
## [1730] "Wholly Moses!"
## [1731] "Ernest Scared Stupid"
## [1732] "The Hospital"
## [1733] "Havana Nights: Dirty Dancing 2"
## [1734] "Cool World"
## [1735] "Tomboy"
## [1736] "Leviathan"
## [1737] "La famille B<U+008E>lier"
## [1738] "Gegen die Wand"
## [1739] "Big Night"
## [1740] "Fairytale: A True Story"
## [1741] "Private School"
## [1742] "My Left Foot: The Story of Christy Brown"
## [1743] "Shootout at Wadala"
## [1744] "The Arrival"
## [1745] "Sharks 3D"
## [1746] "Charlie and the Chocolate Factory (IMAX)"
## [1747] "The Night the Lights Went Out in Georgia"
## [1748] "The Survivors"
## [1749] "The Bad News Bears Go To Japan"
## [1750] "The Greek Tycoon"
## [1751] "The Missouri Breaks"
## [1752] "The Thomas Crown Affair"
## [1753] "Un homme et une femme"
## [1754] "David and Bathsheba"
## [1755] "Imitation of Life"
## [1756] "Stand and Deliver"
## [1757] "The Sterile Cuckoo"
## [1758] "Blues Brothers 2000"
## [1759] "Hong men yan"
## [1760] "Sesame Street Presents Follow That Bird"
## [1761] "Los amantes pasajeros"
## [1762] "The Commitments"
## [1763] "Candyman: Farewell to Flesh"
## [1764] "Stolen"
## [1765] "Sophie Scholl - Die letzten Tage"
## [1766] "Les Miserables"
## [1767] "Seven Days"
## [1768] "Smoke"
## [1769] "Angus, Thongs and Perfect Snogging"
## [1770] "Vykrutasy"
## [1771] "In the Mood for Love"
## [1772] "The Beauty Inside"
## [1773] "The Milagro Beanfield War"
## [1774] "Lord of the Flies"
## [1775] "Leave Her to Heaven"
## [1776] "The Long Walk Home"
## [1777] "Toy Soldiers"
## [1778] "The Thing"
## [1779] "Wanted"
## [1780] "Trespass"
## [1781] "Drop Dead Fred"
## [1782] "Do You Believe?"
## [1783] "Body of Evidence"
## [1784] "A Kid in King Arthur's Court"
## [1785] "The Wings of the Dove"
## [1786] "Great Balls of Fire!"
## [1787] "The Sandpiper"
## [1788] "Return to Snowy River"
## [1789] "Desperate Measures"
## [1790] "Knight Moves"
## [1791] "Vice Versa"
## [1792] "Aarakshan"
## [1793] "The Company You Keep"
## [1794] "Tinker Bell and the Legend of the Neverbeast"
## [1795] "The Crush"
## [1796] "Trial And Error"
## [1797] "Foxcatcher"
## [1798] "The Comebacks"
## [1799] "Hush"
## [1800] "Mrs. Miniver"
## [1801] "Africa's Elephant Kingdom"
## [1802] "Charade"
## [1803] "One Night at McCool's"
## [1804] "Blind"
## [1805] "Beul-la-in-deu"
## [1806] "Tenacious D in: The Pick of Destiny"
## [1807] "Brideshead Revisited"
## [1808] "One Crazy Summer"
## [1809] "Extremities"
## [1810] "Tomorrow When the War Began"
## [1811] "Clue"
## [1812] "Mr. Saturday Night"
## [1813] "Koneko monogatari"
## [1814] "The Sons of Katie Elder"
## [1815] "La Cage Doree"
## [1816] "Die Wilden Kerle 5"
## [1817] "The Pick-Up Artist"
## [1818] "The Entity"
## [1819] "North by Northwest"
## [1820] "Bio-Dome"
## [1821] "Strange Magic"
## [1822] "One Magic Christmas"
## [1823] "Lord of Illusions"
## [1824] "Class Act"
## [1825] "Crazy People"
## [1826] "Enchanted April"
## [1827] "Hanyo"
## [1828] "Critters"
## [1829] "Greedy"
## [1830] "Bye Bye Birdie"
## [1831] "Maundy Thursday"
## [1832] "Umimachi Diary"
## [1833] "Author! Author!"
## [1834] "The Incubus"
## [1835] "Rosewood"
## [1836] "The Evil That Men Do"
## [1837] "Hair"
## [1838] "How to Eat Fried Worms"
## [1839] "Flowers in the Attic"
## [1840] "Senseless"
## [1841] "To Be or Not to Be"
## [1842] "I'm Gonna Git You Sucka"
## [1843] "Student of the Year"
## [1844] "The Competition"
## [1845] "On the Right Track"
## [1846] "Stroker Ace"
## [1847] "Rich and Famous"
## [1848] "Hopscotch"
## [1849] "Middle Age Crazy"
## [1850] "The Concorde: Airport '79"
## [1851] "Time After Time"
## [1852] "Vision Quest"
## [1853] "Le Divorce"
## [1854] "Man's Best Friend"
## [1855] "Clockers"
## [1856] "Real Genius"
## [1857] "They Call Me Bruce"
## [1858] "Hatari!"
## [1859] "Perfect"
## [1860] "Thirst"
## [1861] "Hysteria"
## [1862] "Searching for Sugar Man"
## [1863] "Los abrazos rotos"
## [1864] "Sgt. Pepper's Lonely Hearts Club Band"
## [1865] "A Far Off Place"
## [1866] "Evening"
## [1867] "The Grifters"
## [1868] "Hamburger Hill"
## [1869] "The Last Married Couple in America"
## [1870] "The Perfect Weapon"
## [1871] "Black Dog"
## [1872] "Agent Vinrod"
## [1873] "Crayo Shin-chan Arashi wo Yobu Ohgon no Spy Daisakusen"
## [1874] "Meet Me in St. Louis"
## [1875] "Urmel aus dem Eis"
## [1876] "Mr. Wrong"
## [1877] "The Associate"
## [1878] "L'<U+008E>lve Ducobu"
## [1879] "Aliens of the Deep"
## [1880] "Gekijoban Mahou Shojo Madoka Magica Shinpen Hangyoku no Monogatari"
## [1881] "The Evening Star"
## [1882] "Weekend at Bernie's II"
## [1883] "Labyrinth"
## [1884] "The Sapphires"
## [1885] "Come September"
## [1886] "Ooops! Noah is Gone"
## [1887] "D.O.A."
## [1888] "Come Blow Your Horn"
## [1889] "Move Over, Darling"
## [1890] "Last Night"
## [1891] "The Bedroom Window"
## [1892] "Everybody's All American"
## [1893] "Bad Influence"
## [1894] "They Shoot Horses, Don't They?"
## [1895] "The Spitfire Grill"
## [1896] "A Love"
## [1897] "Visiting Hours"
## [1898] "Hellraiser III: Hell on Earth"
## [1899] "Klute"
movies.errors <- movies.errors[movies.errors$`Budget in USD` > 0,]
#delete movies with budget over 1 milliard
movies.errors <- movies.errors[movies.errors$`Budget in USD` < 1000000000,]
#rename ratings of movies
movies.errors$Rating[movies.errors$Rating == "g"] <- "G"
movies.errors$Rating[movies.errors$Rating == "General"] <- "G"
movies.errors$Rating[movies.errors$Rating == "PG13"] <- "PG-13"
#remove movies with non-existing ratings
movies.errors <- movies.errors[movies.errors$Rating != "X",]
movies.errors <- movies.errors[movies.errors$Rating != "13",]
#correct the genre names
movies.errors$Genre[movies.errors$Genre == "action"] <- "Action"
movies.errors$Genre[movies.errors$Genre == "comedy"] <- "Comedy"
movies.errors$Genre[movies.errors$Genre == "drama"] <- "Drama"
movies.errors$Genre[movies.errors$Genre == "musical"] <- "Musical"
movies.errors$Genre[movies.errors$Genre == "ROMANTIC COMEDY"] <- "Romantic Comedy"
summary(movies.errors$Length)
## Length Class Mode
## 2723 character character
#remove movies with length called "not sure" and those with negative or zero values
movies.errors <- movies.errors[movies.errors$Length != "not sure",]
movies.errors <- movies.errors[movies.errors$Length != 0,]
#remove movies that seem to be producted before television was invented and those from the suture
movies.errors <- movies.errors[movies.errors$`Year of release` >1890,]
movies.errors <- movies.errors[movies.errors$`Year of release` <2016,]
#add new column called decade
movies.errors["Decade"] <- NA
movies.errors$Decade <- cut(
x=movies.errors$`Year of release`,
breaks = seq(1930,2016,10)
)