Introduction: This is Project 3

Set up working directory

setwd("C:/Users/Kaee/OneDrive/Documents/R")

Load required libraries

library(tidyverse) # Comprehensive data manipulation and visualization
## Warning: package 'tidyverse' was built under R version 4.4.3
## Warning: package 'ggplot2' was built under R version 4.4.3
## Warning: package 'lubridate' was built under R version 4.4.3
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr     1.1.4     ✔ readr     2.1.5
## ✔ forcats   1.0.0     ✔ stringr   1.5.1
## ✔ ggplot2   3.5.1     ✔ tibble    3.2.1
## ✔ lubridate 1.9.4     ✔ tidyr     1.3.1
## ✔ purrr     1.0.2     
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(dplyr) # Data manipulation
library(data.table) # Efficient data processing
## 
## Attaching package: 'data.table'
## 
## The following objects are masked from 'package:lubridate':
## 
##     hour, isoweek, mday, minute, month, quarter, second, wday, week,
##     yday, year
## 
## The following objects are masked from 'package:dplyr':
## 
##     between, first, last
## 
## The following object is masked from 'package:purrr':
## 
##     transpose
library(stringr) # String manipulation
library(openxlsx) # Reading/writing Excel files
## Warning: package 'openxlsx' was built under R version 4.4.3
library(ggplot2) # Data visualization
library(car) # Checking multicollinearity
## Loading required package: carData
## 
## Attaching package: 'car'
## 
## The following object is masked from 'package:dplyr':
## 
##     recode
## 
## The following object is masked from 'package:purrr':
## 
##     some

Load required datasets

financials <- read.xlsx("Movie Dataset_Financials.xlsx", sheet = "Sheet1")
audience <- read.xlsx("Movie Dataset_General Audience.xlsx", sheet = "Sheet 1")

Rename datasets

financials <- financials |>
  rename( 
    title = 'original_title',
    budget = 'budget.(Millions)',
    revenue = 'revenue.(Millions)' 
  )

audience <- audience |>
  rename(title = `original_title`)

Mutate to trim whitespace in title column and remove any extra spaces

financials <- financials |>
  mutate(
    title = str_trim(title),
    title = str_squish(title)
  )

audience <- audience |>
  mutate(
    title = str_trim(title),
    title = str_squish(title)
  )

Remove duplicates from datasets, keeping only the first occurrence

financials <- financials |>
  filter(!duplicated(financials$title))

audience <- audience |>
  filter(!duplicated(audience$title))

Merge the two datasets using a left join

df <- left_join(
  audience,
  financials,
  by = "title"
)

Remove rows with missing data

df |>
  filter(!complete.cases(df))
##                title         type       genre runtime mpaa_rating imdb_rating
## 1        10,000 B.C. Feature Film       Drama     134           R         6.8
## 2 Sex and the City 2  Documentary Documentary      NA     Unrated         4.3
##   imdb_num_votes critics_rating critics_score audience_rating audience_score
## 1           9025          Fresh            60         Upright             76
## 2            739          Fresh            53         Upright             41
##   best_pic_nom Facebook_Likes budget  revenue language country
## 1           no          23343   12.6 18.65838     <NA>    <NA>
## 2           no          44555   19.8 41.29632  English     USA

Create profit variable

df <- df |> mutate(profit = revenue - budget)

Simplify genres

df <- df |> mutate(genre = case_when(
  genre == "Science Fiction & Fantasy" ~ "SciFi",
  genre == "Mystery & Suspense" ~ "Mystery",
  genre == "Drama" ~ "Drama",
  genre == "Documentary" ~ "Documentary",
  genre == "Comedy" ~ "Comedy",
  genre == "Action & Adventure" ~ "Action",
  genre == "Animation" ~ "Animation",
  genre == "Horror" ~ "Horror",
  genre == "Musical & Performing Arts" ~ "Arts",
  genre == "Art House & International" ~ "Arts",
  genre == "Other" ~ "Other",
  TRUE ~ "Check"
))

View the cleaned and transformed dataset

print(df)
##                                                              title         type
## 1                                                     The Departed Feature Film
## 2                                           Exodus: Gods and Kings Feature Film
## 3                                                          Spectre Feature Film
## 4                                                      The X Files Feature Film
## 5                       Star Wars: Episode VII - The Force Awakens Feature Film
## 6                                                      John Carter  Documentary
## 7                                                              Rio Feature Film
## 8                                                  The Expendables Feature Film
## 9                                          Avengers: Age of Ultron  Documentary
## 10                                                Cutthroat Island Feature Film
## 11                              Batman v Superman: Dawn of Justice Feature Film
## 12                                  Percy Jackson: Sea of Monsters Feature Film
## 13                                               Quantum of Solace Feature Film
## 14                      Pirates of the Caribbean: Dead Man's Chest Feature Film
## 15                                                 The Lone Ranger Feature Film
## 16                                                             Pan Feature Film
## 17                                       Atlantis: The Lost Empire Feature Film
## 18                                              The Stepford Wives Feature Film
## 19                     Pirates of the Caribbean: On Stranger Tides Feature Film
## 20                                                     Seventh Son Feature Film
## 21                                 The Secret Life of Walter Mitty Feature Film
## 22                                          The Amazing Spider-Man  Documentary
## 23                 Master and Commander: The Far Side of the World Feature Film
## 24                                                        Hannibal Feature Film
## 25                                              The Golden Compass  Documentary
## 26                                                       King Kong Feature Film
## 27                                                         Pompeii Feature Film
## 28                                      Captain America: Civil War Feature Film
## 29                                                      Battleship Feature Film
## 30                                                  Jurassic World  Documentary
## 31                                                         Skyfall Feature Film
## 32                                                    Spider-Man 2 Feature Film
## 33                                                      Iron Man 3 Feature Film
## 34                                             Alice in Wonderland Feature Film
## 35                                           X-Men: The Last Stand Feature Film
## 36                                             Monsters University Feature Film
## 37                  Night at the Museum: Battle of the Smithsonian Feature Film
## 38                                          The Matrix Revolutions Feature Film
## 39                                       Oz the Great and Powerful Feature Film
## 40                                                    Two Brothers Feature Film
## 41                                  Rise of the Planet of the Apes Feature Film
## 42                                               Last Man Standing Feature Film
## 43                                                       Star Trek Feature Film
## 44                                                     Toy Story 3 Feature Film
## 45                                                       Spanglish Feature Film
## 46                                                       Furious 7 Feature Film
## 47                                                           Mulan Feature Film
## 48                                                   Kung Fu Panda Feature Film
## 49                      Lara Croft Tomb Raider: The Cradle of Life Feature Film
## 50                                                           Rango Feature Film
## 51                                                The Great Gatsby  Documentary
## 52                                                    Flushed Away Feature Film
## 53                                                     Pacific Rim Feature Film
## 54                                                         Stealth Feature Film
## 55                                            The Hangover Part II Feature Film
## 56                                                          Jumper Feature Film
## 57                                                    The Campaign Feature Film
## 58                                                White House Down Feature Film
## 59                                                          WALL·E Feature Film
## 60                                                     Rush Hour 3 Feature Film
## 61                                                            2012 Feature Film
## 62                                                 Mars Needs Moms Feature Film
## 63                                               Jupiter Ascending  Documentary
## 64                                            The Legend of Tarzan  Documentary
## 65  The Chronicles of Narnia: The Lion, the Witch and the Wardrobe Feature Film
## 66                                               X-Men: Apocalypse Feature Film
## 67                                                 The Dark Knight  Documentary
## 68                                                              Up Feature Film
## 69                                                     Deep Impact Feature Film
## 70                                                    Dark Shadows Feature Film
## 71                           The Hunger Games: Mockingjay - Part 1 Feature Film
## 72                                                  Wild Wild West Feature Film
## 73                           The Mummy: Tomb of the Dragon Emperor Feature Film
## 74                                                   Suicide Squad Feature Film
## 75                                                   Evan Almighty Feature Film
## 76                                                 The Jungle Book Feature Film
## 77                                                      Waterworld Feature Film
## 78                                                    Pearl Harbor Feature Film
## 79                                                      Inside Out Feature Film
## 80                              Captain America: The First Avenger Feature Film
## 81                                               The Expendables 3 Feature Film
## 82                                     Snow White and the Huntsman Feature Film
## 83                                                      Maleficent Feature Film
## 84                                  Dawn of the Planet of the Apes Feature Film
## 85                                           Babe: Pig in the City Feature Film
## 86                                            K-19: The Widowmaker Feature Film
## 87                                                       Divergent Feature Film
## 88                                                  Dr. Dolittle 2 Feature Film
## 89                                                            Life Feature Film
## 90                                                      Big Hero 6 Feature Film
## 91                                                Inspector Gadget Feature Film
## 92                                               The Polar Express Feature Film
## 93                                    Independence Day: Resurgence Feature Film
## 94                                        How to Train Your Dragon  Documentary
## 95                                                     Unbreakable Feature Film
## 96                                                            Troy Feature Film
## 97                                                 Die Another Day Feature Film
## 98                                                       Inception Feature Film
## 99                                             Godzilla Resurgence Feature Film
## 100                              The Hobbit: An Unexpected Journey  Documentary
## 101                                                            xXx Feature Film
## 102                                                       I, Robot Feature Film
## 103                            Captain America: The Winter Soldier Feature Film
## 104                                      The Sorcerer's Apprentice Feature Film
## 105                                    Scott Pilgrim vs. the World Feature Film
## 106                                                       Catwoman Feature Film
## 107                                                     Shark Tale Feature Film
## 108                                                       Warcraft Feature Film
## 109                                             Terminator Genisys Feature Film
## 110       The Chronicles of Narnia: The Voyage of the Dawn Treader Feature Film
## 111                                                        Beowulf Feature Film
## 112                                            Conan the Barbarian Feature Film
## 113                                                      Alexander Feature Film
## 114                      Harry Potter and the Order of the Phoenix Feature Film
## 115                             Madagascar 3: Europe's Most Wanted Feature Film
## 116                                                        Hancock  Documentary
## 117                                                    I Am Legend Feature Film
## 118                              Charlie and the Chocolate Factory Feature Film
## 119                                                    Ratatouille  Documentary
## 120                                                    Toy Story 2 Feature Film
## 121                                               The Last Samurai Feature Film
## 122                                        Guardians of the Galaxy Feature Film
## 123                                       X-Men Origins: Wolverine Feature Film
## 124                                                           Salt Feature Film
## 125                                                         Frozen Feature Film
## 126                                            The Matrix Reloaded Feature Film
## 127                                           Thor: The Dark World Feature Film
## 128                                                        Jarhead Feature Film
## 129                                                Black Hawk Down Feature Film
## 130                                                           Thor  Documentary
## 131                                                      Hall Pass Feature Film
## 132                                                        G-Force Feature Film
## 133                                            Wrath of the Titans  Documentary
## 134                                        The Wolf of Wall Street Feature Film
## 135                                                   Sucker Punch Feature Film
## 136                                                    The Wolfman Feature Film
## 137                                             X-Men: First Class Feature Film
## 138                                                      Bee Movie Feature Film
## 139                                                Kung Fu Panda 2 Feature Film
## 140                                             The Last Airbender Feature Film
## 141                                       The Fast and the Furious Feature Film
## 142                                                   Tomorrowland Feature Film
## 143                                                    Money Train Feature Film
## 144                                                    The Martian Feature Film
## 145                                          Mr. Peabody & Sherman Feature Film
## 146                                                    10,000 B.C. Feature Film
## 147                                                          RED 2 Feature Film
## 148                                                           Hook Feature Film
## 149                                                   Ghostbusters Feature Film
## 150                                                     Armageddon Feature Film
## 151                                                Men in Black II Feature Film
## 152                                                           Noah Feature Film
## 153                                                Kung Fu Panda 3 Feature Film
## 154                           Mission: Impossible - Ghost Protocol Feature Film
## 155                                   Looney Tunes: Back in Action Feature Film
## 156                                         Fun with Dick and Jane Feature Film
## 157                                                         Zodiac Feature Film
## 158                                                Lethal Weapon 4 Feature Film
## 159                                          G.I. Joe: Retaliation Feature Film
## 160                                               Star Trek Beyond Feature Film
## 161                                     How to Train Your Dragon 2 Feature Film
## 162                                           Charlie Wilson's War Feature Film
## 163                                             The Simpsons Movie Feature Film
## 164                                                       Watchmen  Documentary
## 165                                                   The Majestic Feature Film
## 166                                                           Hulk Feature Film
## 167                                    G.I. Joe: The Rise of Cobra Feature Film
## 168                                                         Sahara Feature Film
## 169                              Final Fantasy: The Spirits Within Feature Film
## 170                                                  Mirror Mirror Feature Film
## 171                                        The World Is Not Enough Feature Film
## 172                             Mission: Impossible - Rogue Nation Feature Film
## 173                      The Twilight Saga: Breaking Dawn - Part 2  Documentary
## 174                                                   Happy Feet 2 Feature Film
## 175                                   The Adventures of Pluto Nash Feature Film
## 176                                        Mission: Impossible III Feature Film
## 177                                             Mad Max: Fury Road Feature Film
## 178                                                   The Revenant Feature Film
## 179                                              The Good Dinosaur Feature Film
## 180                                                 Hotel for Dogs Feature Film
## 181                                         Penguins of Madagascar Feature Film
## 182                                                      The Score Feature Film
## 183                                                         Driven Feature Film
## 184                          The Hunger Games: Mockingjay - Part 2     TV Movie
## 185                                The Hunger Games: Catching Fire Feature Film
## 186                                                   First Knight Feature Film
## 187                                                    World War Z Feature Film
## 188                                 Transformers: Dark of the Moon Feature Film
## 189                                                   The Terminal Feature Film
## 190                                           The Nutcracker in 3D Feature Film
## 191                                                      Surf's Up Feature Film
## 192                                                          Brave Feature Film
## 193                                                 Vertical Limit Feature Film
## 194                                                      Australia Feature Film
## 195                                                    After Earth  Documentary
## 196                       Harry Potter and the Prisoner of Azkaban Feature Film
## 197                  Harry Potter and the Deathly Hallows: Part II Feature Film
## 198                        Night at the Museum: Secret of the Tomb  Documentary
## 199                                                       Megamind Feature Film
## 200                          Harry Potter and the Sorcerer's Stone Feature Film
## 201                                                       R.I.P.D.  Documentary
## 202                                                   Transformers Feature Film
## 203                                Alice Through the Looking Glass Feature Film
## 204                   Harry Potter and the Deathly Hallows: Part I Feature Film
## 205                      Star Wars: Episode I - The Phantom Menace Feature Film
## 206                                            Monsters vs. Aliens Feature Film
## 207                                      Walking with Dinosaurs 3D Feature Film
## 208                                                        X-Men 2 Feature Film
## 209                                                      Fast Five Feature Film
## 210                             Sherlock Holmes: A Game of Shadows Feature Film
## 211                                                     Hart's War Feature Film
## 212                                                   Total Recall Feature Film
## 213                                                       Hercules Feature Film
## 214                                              The Bourne Legacy Feature Film
## 215                                    Madagascar: Escape 2 Africa Feature Film
## 216                                 How the Grinch Stole Christmas Feature Film
## 217                                         The Day After Tomorrow Feature Film
## 218                                         Mission: Impossible II Feature Film
## 219                                              The Perfect Storm Feature Film
## 220                         Fantastic 4: Rise of the Silver Surfer     TV Movie
## 221                                                   TRON: Legacy Feature Film
## 222                                                    Ghost Rider Feature Film
## 223                                                         Wanted Feature Film
## 224                                                       Dinosaur Feature Film
## 225                                                     Prometheus  Documentary
## 226                                                     Spider-Man Feature Film
## 227                                                        Elysium Feature Film
## 228                            Prince of Persia: The Sands of Time Feature Film
## 229                                                        RoboCop Feature Film
## 230                                                    Speed Racer  Documentary
## 231                                     X-Men: Days of Future Past Feature Film
## 232                                Charlie's Angels: Full Throttle Feature Film
## 233                                                       Oblivion Feature Film
## 234                                                   Funny People Feature Film
## 235                   Star Wars: Episode II - Attack of the Clones Feature Film
## 236                                                   The Invasion Feature Film
## 237                                            Dinner for Schmucks Feature Film
## 238                                             A Sound of Thunder Feature Film
## 239                                                     The Croods Feature Film
## 240                                   Asterix at the Olympic Games Feature Film
## 241                                                    Windtalkers  Documentary
## 242                                     The Huntsman: Winter's War Feature Film
## 243                                                        Soldier Feature Film
## 244                                                        Gravity Feature Film
## 245                                                Angels & Demons Feature Film
## 246               Teenage Mutant Ninja Turtles: Out of the Shadows Feature Film
## 247                                                 Fantastic Four Feature Film
## 248                                            Night at the Museum Feature Film
## 249                                                    San Andreas Feature Film
## 250                                                  Batman Begins Feature Film
## 251                                                          Click Feature Film
## 252                                                  Green Lantern Feature Film
## 253                                                       Iron Man Feature Film
## 254                            Harry Potter and the Goblet of Fire Feature Film
## 255                                             Gulliver's Travels Feature Film
## 256                                               The Green Hornet  Documentary
## 257                                                     The A-Team Feature Film
## 258                                         300: Rise of an Empire Feature Film
## 259                                                     The Smurfs Feature Film
## 260                                              Home on the Range Feature Film
## 261                                           What Dreams May Come Feature Film
## 262                                                     Real Steel Feature Film
## 263                                                        Hostage Feature Film
## 264                                                      Cast Away Feature Film
## 265                                                   Ender's Game Feature Film
## 266                                          Live Free or Die Hard Feature Film
## 267                                                      Zookeeper Feature Film
## 268                                    Around the World in 80 Days Feature Film
## 269                                                        Be Cool Feature Film
## 270                                                     Happy Feet Feature Film
## 271                                                    The Holiday Feature Film
## 272                                              Kingdom of Heaven Feature Film
## 273                                                  Stuart Little Feature Film
## 274                                      The Princess and the Frog  Documentary
## 275                                        Star Trek Into Darkness Feature Film
## 276                                                      True Lies     TV Movie
## 277                                                     The Island Feature Film
## 278                                                 Town & Country Feature Film
## 279                                     The Taking of Pelham 1 2 3 Feature Film
## 280                                                      Gladiator Feature Film
## 281                                                Minority Report Feature Film
## 282                        Harry Potter and the Chamber of Secrets Feature Film
## 283                                                 Wreck-It Ralph Feature Film
## 284                                                      Insurgent Feature Film
## 285                                                The Book of Eli Feature Film
## 286                                                 Public Enemies Feature Film
## 287                                              American Gangster Feature Film
## 288                                              Starship Troopers Feature Film
## 289                            The Curious Case of Benjamin Button Feature Film
## 290                                    The Hunchback of Notre Dame Feature Film
## 291                                                 The Other Guys Feature Film
## 292                                                     The Lovers Feature Film
## 293                                               Django Unchained Feature Film
## 294                                           The Sum of All Fears Feature Film
## 295                                       The Emperor's New Groove Feature Film
## 296                                                           Cars Feature Film
## 297                                              National Treasure Feature Film
## 298                                                         Eragon Feature Film
## 299                                      Where the Wild Things Are Feature Film
## 300                                                 102 Dalmatians Feature Film
## 301                                                           Bolt Feature Film
## 302                                                    The Tourist Feature Film
## 303                                           Seven Years in Tibet Feature Film
## 304                                  You Don't Mess with the Zohan Feature Film
## 305                                                Doctor Dolittle Feature Film
## 306                                                 Batman Forever Feature Film
## 307                                Transformers: Age of Extinction Feature Film
## 308                                                    Cloud Atlas Feature Film
## 309                  Legend of the Guardians: The Owls of Ga'Hoole Feature Film
## 310                                               Edge of Tomorrow Feature Film
## 311                                          Rise of the Guardians Feature Film
## 312                                                Treasure Planet Feature Film
## 313                                               Land of the Lost Feature Film
## 314                                            The Incredible Hulk Feature Film
## 315                                                    Point Break Feature Film
## 316                                                    The Dilemma Feature Film
## 317                                        In the Heart of the Sea Feature Film
## 318                                                 Ocean's Twelve Feature Film
## 319                                                     Green Zone Feature Film
## 320                                              The Peanuts Movie Feature Film
## 321                                           The Spanish Prisoner Feature Film
## 322                                               The Lovely Bones Feature Film
## 323                                              Gangs of New York Feature Film
## 324                                              Jurassic Park III Feature Film
## 325             Indiana Jones and the Kingdom of the Crystal Skull Feature Film
## 326                                 Nutty Professor II: The Klumps Feature Film
## 327                            Transformers: Revenge of the Fallen Feature Film
## 328                                                Shrek the Third Feature Film
## 329                                              The Fifth Element Feature Film
## 330                                             Sex and the City 2  Documentary
## 331                                          The Road to El Dorado Feature Film
## 332                                     Ice Age: Continental Drift Feature Film
## 333                                                     Cinderella Feature Film
## 334                                                     Monkeybone Feature Film
## 335                                                   Finding Nemo Feature Film
## 336                  The Lord of the Rings: The Return of the King Feature Film
## 337                          The Lord of the Rings: The Two Towers Feature Film
## 338                                                     Madagascar Feature Film
## 339                                        Lara Croft: Tomb Raider Feature Film
## 340                                                  Transcendence Feature Film
## 341                                                   Killer Elite Feature Film
## 342                                      The Spiderwick Chronicles  Documentary
## 343                                         A Good Day to Die Hard Feature Film
## 344                                                      The Alamo Feature Film
## 345                                                The Incredibles Feature Film
## 346              The Lord of the Rings: The Fellowship of the Ring Feature Film
## 347             Percy Jackson & the Olympians: The Lightning Thief Feature Film
## 348                                                   Men in Black Feature Film
## 349                             Terminator 3: Rise of the Machines Feature Film
## 350                                                    Unstoppable Feature Film
## 351                                                    Rush Hour 2 Feature Film
## 352                                              What Lies Beneath Feature Film
## 353                              Cloudy with a Chance of Meatballs  Documentary
## 354                                 Ice Age: Dawn of the Dinosaurs Feature Film
## 355                                                   Rock of Ages Feature Film
## 356                                               Charlie's Angels Feature Film
## 357                                                      The Abyss Feature Film
## 358                                                   The Smurfs 2 Feature Film
## 359                                                 Tropic Thunder Feature Film
## 360                                The Girl with the Dragon Tattoo Feature Film
## 361                                      Die Hard with a Vengeance Feature Film
## 362                                                Sherlock Holmes Feature Film
## 363                                                        Ben-Hur Feature Film
## 364                                        Speed 2: Cruise Control Feature Film
## 365                         Alvin and the Chipmunks: The Road Chip Feature Film
## 366                                              Anna and the King Feature Film
## 367                                                          Agora Feature Film
## 368                                                         Pixels Feature Film
## 369                                   A.I. Artificial Intelligence Feature Film
## 370                                            The Haunted Mansion Feature Film
## 371                                                        Contact Feature Film
## 372                                                     Hollow Man Feature Film
## 373                                                The Interpreter Feature Film
## 374                                               The Longest Yard Feature Film
## 375                                  The Lost World: Jurassic Park Feature Film
## 376                                               Now You See Me 2  Documentary
## 377                                              The Expendables 2 Feature Film
## 378                                                       Spy Game  Documentary
## 379                                                Mission to Mars Feature Film
## 380                                  The Day the Earth Stood Still Feature Film
## 381                                               Bicentennial Man  Documentary
## 382                                                        Volcano Feature Film
## 383                                                The Devil's Own  Documentary
## 384                                                      The Saint Feature Film
## 385                                                       The Edge Feature Film
## 386                                                          Ted 2 Feature Film
## 387                                                 Cinderella Man Feature Film
## 388                                                     Seabiscuit Feature Film
## 389                                       The Adventures of Tintin Feature Film
## 390                                Wall Street: Money Never Sleeps Feature Film
## 391                                                  Gods of Egypt Feature Film
## 392                                                     Miami Vice Feature Film
## 393                                                          Turbo Feature Film
## 394                                           The Bourne Supremacy  Documentary
## 395                                            Shrek Forever After Feature Film
## 396                                                 Ocean's Eleven Feature Film
## 397                                                   Interstellar Feature Film
## 398                                             Hotel Transylvania Feature Film
## 399                                              The Mummy Returns Feature Film
## 400                                             The Flowers of War Feature Film
## 401                                                     Safe House Feature Film
## 402                                          The Angry Birds Movie Feature Film
## 403                                                    Tower Heist Feature Film
## 404                                          Jack the Giant Slayer Feature Film
## 405                                             Enemy of the State Feature Film
## 406                                               It's Complicated Feature Film
## 407                                               Ocean's Thirteen  Documentary
## 408                                                    Open Season Feature Film
## 409                                                       Valkyrie Feature Film
## 410                                             Enemy at the Gates Feature Film
## 411                                                    The Rundown Feature Film
## 412                                               Last Action Hero  Documentary
## 413                                            Memoirs of a Geisha Feature Film
## 414                          The Fast and the Furious: Tokyo Drift Feature Film
## 415                                               Arthur Christmas Feature Film
## 416                                                 Meet Joe Black Feature Film
## 417                                              Collateral Damage Feature Film
## 418                                                  All That Jazz  Documentary
## 419                                           Hotel Transylvania 2 Feature Film
## 420                                                 Batman & Robin Feature Film
## 421                                                     Iron Man 2     TV Movie
## 422                                                          I Spy Feature Film
## 423                                                     Scooby-Doo Feature Film
## 424                                                          Dredd Feature Film
## 425                                                       Poseidon Feature Film
## 426                                                      Creepshow Feature Film
## 427                       Cats & Dogs: The Revenge of Kitty Galore Feature Film
## 428                                                  Despicable Me Feature Film
## 429                                    Hellboy II: The Golden Army Feature Film
## 430                                                       The Rock Feature Film
## 431                                                    The 6th Day Feature Film
## 432                                                 Bruce Almighty Feature Film
## 433                                                         Cars 2 Feature Film
## 434                                            Mission: Impossible Feature Film
## 435                                               The Hunger Games Feature Film
## 436                                                  Lilo & Stitch Feature Film
## 437                                                 Batman Returns Feature Film
## 438                                                 Over the Hedge Feature Film
## 439                                                   Dante's Peak Feature Film
## 440                                                Charlotte's Web Feature Film
## 441                                                Despicable Me 2 Feature Film
## 442                                                 Little Fockers Feature Film
## 443                                                       Carriers Feature Film
## 444                           Alvin and the Chipmunks: Chipwrecked  Documentary
## 445                                                    Grown Ups 2  Documentary
## 446                                                      Get Smart  Documentary
## 447                                         Something's Gotta Give Feature Film
## 448                                                 Shutter Island Feature Film
## 449                                               Four Christmases Feature Film
## 450                                                         Robots Feature Film
## 451                                                       Face/Off Feature Film
## 452                                                   Little Nicky Feature Film
## 453                                                   Jason Bourne Feature Film
## 454                                                Just Go with It Feature Film
## 455                                                      Daredevil Feature Film
## 456                                                        Con Air Feature Film
## 457                                                           Hugo Feature Film
## 458                                                  Cold Mountain Feature Film
## 459                                                     Red Dragon Feature Film
## 460                                                        The BFG Feature Film
## 461                                                   The Haunting Feature Film
## 462                                                      Space Jam Feature Film
## 463                                               The Pink Panther Feature Film
## 464                                                         Eraser Feature Film
## 465                                           The Three Musketeers Feature Film
## 466                                                           Fury Feature Film
## 467                                          Six Days Seven Nights Feature Film
## 468                                                       The Core Feature Film
## 469                                       The Amazing Spider-Man 2 Feature Film
## 470                                                       Blackhat Feature Film
## 471                                                  Lost in Space Feature Film
## 472                                                    Bad Company Feature Film
## 473                                                      The Siege Feature Film
## 474                                                  Osmosis Jones Feature Film
## 475                                                    The Insider Feature Film
## 476                                                  Fantasia 2000 Feature Film
## 477                                               The Time Machine Feature Film
## 478                                               Mighty Joe Young Feature Film
## 479                                                      Swordfish Feature Film
## 480                                                  Blood Diamond Feature Film
## 481         Pirates of the Caribbean: The Curse of the Black Pearl Feature Film
## 482                                             The Cat in the Hat Feature Film
## 483                                             The Brothers Grimm Feature Film
## 484                                                  Mars Attacks! Feature Film
## 485                                             Planet of the Apes Feature Film
## 486                                                   Man of Steel Feature Film
## 487                                                     Surrogates Feature Film
## 488                                                  Thirteen Days  Documentary
## 489                                                       Daylight Feature Film
## 490                                              Battlefield Earth Feature Film
## 491                                                           Epic Feature Film
## 492                                                           Nine Feature Film
## 493                                                       Timeline Feature Film
## 494                                                    The Postman Feature Film
## 495                                                    End of Days Feature Film
## 496                                          The Last Witch Hunter  Documentary
## 497                                                     Red Planet Feature Film
## 498                                      Arthur and the Invisibles Feature Film
## 499                                                         Oceans Feature Film
## 500                                              Conspiracy Theory Feature Film
## 501                                     Terminator 2: Judgment Day Feature Film
## 502                                                 Top Cat Begins Feature Film
## 503                                               A Beautiful Mind Feature Film
## 504                                                  The Lion King Feature Film
## 505                                                  Casino Royale Feature Film
## 506                            Cloudy with a Chance of Meatballs 2  Documentary
## 507                                                 Dracula Untold Feature Film
## 508                                                        Hidalgo Feature Film
## 509                                                Stuart Little 2 Feature Film
## 510                                               2 Fast 2 Furious Feature Film
## 511                                              The Little Prince Feature Film
## 512                                               Superman Returns Feature Film
## 513                                                      Yogi Bear Feature Film
## 514                                        The Secret Life of Pets Feature Film
## 515                          The League of Extraordinary Gentlemen Feature Film
## 516                           The Adventures of Rocky & Bullwinkle Feature Film
## 517                                               Independence Day Feature Film
## 518                                               Mr. & Mrs. Smith Feature Film
## 519                                          Gone in Sixty Seconds Feature Film
## 520                                                Children of Men Feature Film
## 521                                                          X-Men Feature Film
## 522                      The Hobbit: The Battle of the Five Armies Feature Film
## 523                                                      Enchanted Feature Film
## 524                                          Ice Age: The Meltdown Feature Film
## 525                                                 50 First Dates Feature Film
## 526                                                      Hairspray  Documentary
## 527                                        Exorcist: The Beginning  Documentary
## 528                                                      Eagle Eye Feature Film
## 529                                                 Now You See Me Feature Film
## 530                                                      Grown Ups Feature Film
## 531                                            Tomorrow Never Dies Feature Film
## 532                                                    Constantine Feature Film
## 533                                                  Jack and Jill Feature Film
## 534                                                        Titanic Feature Film
## 535                                                  Air Force One Feature Film
## 536                                               The 13th Warrior Feature Film
## 537                                                     Dreamgirls  Documentary
## 538                                              A Christmas Carol Feature Film
## 539                                                        Twister Feature Film
## 540                                                         Munich Feature Film
## 541                                               Tears of the Sun Feature Film
## 542                                                        Killers Feature Film
## 543                                        The Man from U.N.C.L.E. Feature Film
## 544                                                       47 Ronin Feature Film
## 545                                                  Monster House Feature Film
## 546                                                        Bandits  Documentary
## 547                                            The Legend of Zorro Feature Film
## 548                                                      Allegiant Feature Film
## 549                                                      Immortals  Documentary
## 550                                                Son of the Mask Feature Film
## 551                                                     Titan A.E. Feature Film
## 552                                             Hollywood Homicide Feature Film
## 553                                                    The Aviator     TV Movie
## 554                                       The Manchurian Candidate Feature Film
## 555                                                  Puss in Boots Feature Film
## 556                                          Flight of the Phoenix Feature Film
## 557                                                    Vanilla Sky Feature Film
## 558                                                        Minions Feature Film
## 559                                                            Ali Feature Film
## 560                                                     Snake Eyes Feature Film
## 561                                                         Sphere Feature Film
## 562                                                       Déjà Vu Feature Film
## 563                                                    Fool's Gold Feature Film
## 564                                                      Evolution Feature Film
## 565                                                    The Kingdom Feature Film
## 566                    Talladega Nights: The Ballad of Ricky Bobby Feature Film
## 567                       The Chronicles of Narnia: Prince Caspian Feature Film
## 568                                                     Braveheart  Documentary
## 569                                                           Home Feature Film
## 570                                                    The Patriot Feature Film
## 571                                                     Entrapment Feature Film
## 572                                              Road to Perdition Feature Film
## 573                       The SpongeBob Movie: Sponge Out of Water Feature Film
## 574                                                    The Village Feature Film
## 575                                                        Flubber Feature Film
## 576                                                          Signs Feature Film
## 577                                                        Shrek 2 Feature Film
## 578                                           Terminator Salvation Feature Film
## 579                                                  Runaway Bride  Documentary
## 580                                                 Knight and Day Feature Film
## 581                       Pirates of the Caribbean: At World's End Feature Film
## 582                                                         Ransom Feature Film
## 583                                           Inglourious Basterds Feature Film
## 584                               Journey 2: The Mysterious Island Feature Film
## 585                                                     Die Hard 2  Documentary
## 586                                                       S.W.A.T. Feature Film
## 587                                                   Spider-Man 3 Feature Film
## 588                                              Lady in the Water Feature Film
## 589                                                         Avatar Feature Film
## 590                                        AVP: Alien vs. Predator Feature Film
## 591                        Alvin and the Chipmunks: The Squeakquel Feature Film
## 592                                               We Were Soldiers Feature Film
## 593                                             Olympus Has Fallen Feature Film
## 594                                        Star Trek: Insurrection Feature Film
## 595                                             Battle Los Angeles  Documentary
## 596                                                       Big Fish Feature Film
## 597                                                           Wolf Feature Film
## 598                                                      War Horse Feature Film
## 599                                              The Monuments Men Feature Film
## 600                                                     Life of Pi Feature Film
## 601                                   Teenage Mutant Ninja Turtles Feature Film
## 602                                                     Robin Hood Feature Film
## 603                                                  Sleepy Hollow Feature Film
## 604                                                       Stardust  Documentary
## 605                                                   The Avengers Feature Film
## 606                                                 Monsters, Inc. Feature Film
## 607                   Star Wars: Episode III - Revenge of the Sith Feature Film
## 608                                                           Doom  Documentary
## 609                                                    Bad Boys II Feature Film
## 610                                          Underworld: Awakening Feature Film
## 611                            The Hobbit: The Desolation of Smaug Feature Film
## 612                                                        Tangled Feature Film
## 613                                              The Da Vinci Code Feature Film
## 614                                                     Rollerball Feature Film
## 615                                      Ballistic: Ecks vs. Sever Feature Film
## 616                                                      Hard Rain Feature Film
## 617                                                 Men in Black 3 Feature Film
## 618                                Legends of Oz: Dorothy's Return Feature Film
## 619                                                Bedtime Stories Feature Film
## 620                          Sky Captain and the World of Tomorrow Feature Film
## 621                                               Basic Instinct 2 Feature Film
## 622                                                    Escape Plan Feature Film
## 623                                         The Legend of Hercules Feature Film
## 624                                                How Do You Know Feature Film
## 625                                     The Twilight Saga: Eclipse Feature Film
## 626                                      The Chronicles of Riddick Feature Film
## 627                                                      Bewitched Feature Film
## 628                                                  The Wolverine Feature Film
## 629                               Spirit: Stallion of the Cimarron Feature Film
## 630                                                          Rio 2 Feature Film
## 631                                                    Mystery Men Feature Film
## 632                                           The Bourne Ultimatum Feature Film
## 633                                                        Ant-Man Feature Film
## 634                                               The Finest Hours Feature Film
## 635                                                   Body of Lies  Documentary
## 636                         Harry Potter and the Half-Blood Prince Feature Film
## 637                                Abraham Lincoln: Vampire Hunter Feature Film
## 638                                              War of the Worlds Feature Film
## 639                                            Clash of the Titans Feature Film
## 640                                          The Dark Knight Rises Feature Film
## 641                                                The Last Legion Feature Film
## 642                                            Saving Private Ryan Feature Film
## 643                                                 Need for Speed Feature Film
## 644                                                What Women Want Feature Film
##           genre runtime mpaa_rating imdb_rating imdb_num_votes  critics_rating
## 1         Drama     118     Unrated         2.1           9904           Fresh
## 2         Drama     131       PG-13         3.3           1010           Fresh
## 3        Comedy      84           R         7.6          22381 Certified Fresh
## 4         Drama      97          PG         2.5          54363          Rotten
## 5        Horror      90           R         7.2          35096 Certified Fresh
## 6   Documentary      78     Unrated         7.8            333           Fresh
## 7         Drama     107           R         2.1           9904           Fresh
## 8         Drama     130           R         2.1         122980 Certified Fresh
## 9   Documentary      88     Unrated         7.5            880           Fresh
## 10        Drama     100           R         4.1            739           Fresh
## 11       Action     127          PG         6.8          71979 Certified Fresh
## 12        Drama     110          PG         2.1           9904           Fresh
## 13       Comedy     110           R         3.7         201779 Certified Fresh
## 14       Comedy     100       PG-13         5.9          25808          Rotten
## 15       Comedy     111          PG         7.5            880           Fresh
## 16        Drama     130           R         2.0           9216          Rotten
## 17        Drama     106       PG-13         2.1           9904           Fresh
## 18        Drama     120           R         7.0          66233 Certified Fresh
## 19       Horror      91           R         4.4          37769          Rotten
## 20        Drama     109          PG         4.1            739           Fresh
## 21        Drama     108       PG-13         3.2           9904           Fresh
## 22  Documentary      82     Unrated        55.0           3459           Fresh
## 23        Drama     107           R         3.1           1010           Fresh
## 24        Drama     137           R         8.0         490295 Certified Fresh
## 25  Documentary      87     Unrated         7.6           4541 Certified Fresh
## 26       Comedy      97          PG         7.2          66489          Rotten
## 27        Drama     110          PG         5.5          10522           Fresh
## 28       Horror      84           R         5.6          19285 Certified Fresh
## 29         Arts     115           R         6.4           3688           Fresh
## 30         Arts     100           R         7.9           3488           Fresh
## 31      Mystery      85           R         7.1          82851 Certified Fresh
## 32    Animation      87          PG         7.0          56128           Fresh
## 33        SciFi      85           G         7.7          33101           Fresh
## 34      Mystery     124           R         7.1         259822           Fresh
## 35  Documentary     112           R        44.0           4908          Rotten
## 36       Action     108          PG         6.5         290356          Rotten
## 37        Drama      99           R         3.5          27769          Rotten
## 38        Drama     121           R         1.2          12819           Fresh
## 39       Action     137           R         8.4         466400 Certified Fresh
## 40        Drama     112           R         6.9           3487 Certified Fresh
## 41        Drama     108           R         4.1            739           Fresh
## 42        Drama     116          PG         5.2          11657          Rotten
## 43        Drama     126           R         3.3           1010           Fresh
## 44       Comedy      94           R         5.4          13523          Rotten
## 45        Drama      99           R         3.8          10522           Fresh
## 46       Comedy     113       PG-13         5.4           9654          Rotten
## 47        Drama      88           R         2.1           9904           Fresh
## 48        Drama      92           R         4.1           7658          Rotten
## 49        Drama     134       PG-13         2.1           9904           Fresh
## 50        Drama     135           R         3.1           1010           Fresh
## 51  Documentary      65     Unrated         5.3            183           Fresh
## 52        Drama     155          PG         6.7          13092           Fresh
## 53      Mystery     119       PG-13         5.3            183           Fresh
## 54        Drama      94          PG         5.1           3135          Rotten
## 55        Drama     125          PG         6.8          71141          Rotten
## 56        Drama     119           R         5.5          73617          Rotten
## 57        Drama      91           R         5.5           2698          Rotten
## 58        Drama     100           R         5.6         205065          Rotten
## 59      Mystery      79           R         5.5           5587          Rotten
## 60      Mystery     108           R         6.4           6247           Fresh
## 61       Comedy      98       PG-13         6.3           8646 Certified Fresh
## 62        Drama      96     Unrated         5.6         205065          Rotten
## 63  Documentary     106     Unrated         8.5           2362 Certified Fresh
## 64  Documentary      92     Unrated         6.8           1942 Certified Fresh
## 65      Mystery     115       PG-13         6.6         110238          Rotten
## 66    Animation      87           G         4.4          21501          Rotten
## 67  Documentary     103     Unrated         8.1          14359           Fresh
## 68         Arts     127           R         6.5          12450           Fresh
## 69        Drama     155          PG         2.1         122980 Certified Fresh
## 70        Drama     118           R         1.2          12819           Fresh
## 71        Drama     132           R         4.7           9525 Certified Fresh
## 72       Comedy      91           R         6.5          12450           Fresh
## 73      Mystery     101           R         5.9           2944          Rotten
## 74       Comedy      93          PG         5.8           6788           Fresh
## 75       Horror     101          PG         6.5          24783           Fresh
## 76        Drama     106           R         4.6          10492           Fresh
## 77    Animation     101           G         7.8          12450           Fresh
## 78        Drama     109       PG-13         4.2           3467          Rotten
## 79       Comedy     100       PG-13         4.4           5616          Rotten
## 80        Drama     129       PG-13         3.2           1010           Fresh
## 81        Drama     102           R         4.0           9216          Rotten
## 82       Comedy      90           R         6.8          12269           Fresh
## 83       Action     117           R         2.7          60335          Rotten
## 84       Action      83           R         5.5           5035          Rotten
## 85        Drama     120          PG         7.5          21623           Fresh
## 86        Drama      84           R         2.1           9904           Fresh
## 87        Drama     114           R         5.7           5425          Rotten
## 88        Drama     106       PG-13         3.8          10522           Fresh
## 89        Drama     128           R         3.8          10522           Fresh
## 90       Comedy     100           R         5.9          82737          Rotten
## 91        Drama      93       PG-13         3.8          10522           Fresh
## 92       Action     107           R         7.8         279704 Certified Fresh
## 93      Mystery      94           R         5.8          11192           Fresh
## 94       Comedy      94           R         6.2           3851          Rotten
## 95        Drama      98           R         5.9          62773          Rotten
## 96        Drama     138       PG-13         3.6           1010           Fresh
## 97        Drama     115       PG-13         3.6           1010           Fresh
## 98      Mystery     117           R         7.2          68429           Fresh
## 99       Comedy      93          PG         4.2         182983 Certified Fresh
## 100 Documentary     132     Unrated         8.0           1147           Fresh
## 101       Drama      96       PG-13         3.8          10522           Fresh
## 102       Drama     108     Unrated         2.0           9216          Rotten
## 103       Drama      94           R         5.9          82737          Rotten
## 104      Comedy      84       PG-13         4.1           9853          Rotten
## 105       Drama     139           R         4.5          16824          Rotten
## 106       Drama     140           R         4.0           9216          Rotten
## 107       Drama     120           R         3.8          10522           Fresh
## 108      Action     107          PG         5.4          41767          Rotten
## 109      Comedy      97          PG         6.4          14970          Rotten
## 110       Other     165           R         8.5         893008 Certified Fresh
## 111       Drama     102          PG         3.6           1010           Fresh
## 112       Drama     111           R         2.1           9904           Fresh
## 113      Comedy      89       PG-13         8.5         893008 Certified Fresh
## 114     Mystery     102           R         5.8          32751          Rotten
## 115       Drama     118       PG-13         3.6           1010           Fresh
## 116        Arts      96     Unrated         5.5          32751          Rotten
## 117      Action     127           R         6.6         123989          Rotten
## 118      Action     103           G         5.6          70209          Rotten
## 119 Documentary     111     Unrated         7.8            541           Fresh
## 120       Drama      91           R         4.1            739           Fresh
## 121       Drama      97           R         3.3           1010           Fresh
## 122       Drama     109           R         3.2           6552          Rotten
## 123      Comedy     101       PG-13         5.8          52635          Rotten
## 124       Drama     112           R         5.9            725          Rotten
## 125      Comedy      91           R         1.2          12819           Fresh
## 126      Horror      92     Unrated         1.2          12819           Fresh
## 127      Comedy      95           R         6.2          17798          Rotten
## 128       Drama     152       PG-13         7.7         106171 Certified Fresh
## 129       Drama     113       PG-13         5.8           2295          Rotten
## 130 Documentary      39     Unrated         1.2          12819           Fresh
## 131       Drama     112           R         7.1           6946           Fresh
## 132      Comedy      91          PG         3.4          57933          Rotten
## 133 Documentary     157     Unrated         7.5           1784           Fresh
## 134       Drama      90           R         3.0           9216          Rotten
## 135       Drama      99          PG         7.0          48756           Fresh
## 136      Comedy      88          PG         3.4          57933          Rotten
## 137       Drama     101           R         5.9          13980           Fresh
## 138      Action      92          PG         5.6         205065          Rotten
## 139      Comedy     100           R         5.6         205065          Rotten
## 140      Comedy      91           G         5.6         205065          Rotten
## 141       Drama      95           R         7.2          35635 Certified Fresh
## 142       Drama     108           R         5.9          82737          Rotten
## 143       Drama      99          PG         6.8         111132          Rotten
## 144       Drama     101           R         5.9          12877          Rotten
## 145      Action     113           G         3.6           1010           Fresh
## 146       Drama     134           R         6.8           9025           Fresh
## 147       Drama     107       PG-13         2.1         122980 Certified Fresh
## 148       Drama     109           R         3.8          10522           Fresh
## 149      Action     127       PG-13         3.6           1010           Fresh
## 150        Arts     117          PG         3.6           1010           Fresh
## 151     Mystery     123       PG-13         3.6           1010           Fresh
## 152       Drama     123       PG-13         5.5          93331          Rotten
## 153      Action      99       PG-13         3.6           1010           Fresh
## 154      Action     100          PG         6.3           3153          Rotten
## 155       Drama     126       PG-13         7.6         329613           Fresh
## 156      Comedy      86       PG-13         4.5           3096          Rotten
## 157       Drama     131           R         5.5          73617          Rotten
## 158       Drama     125           R         3.1           1010           Fresh
## 159       Drama      91           R         3.1           1010           Fresh
## 160       Drama     102           R         5.5           1628          Rotten
## 161      Action     114       PG-13         3.3           1010           Fresh
## 162       Drama     101           G         3.8          10522           Fresh
## 163       Drama     136       PG-13         7.2          88777           Fresh
## 164 Documentary      90          PG         3.1           1010           Fresh
## 165       Drama     122           R         7.7         294683           Fresh
## 166      Comedy     128       PG-13         3.1           1010           Fresh
## 167       Drama      99           R         4.9           1493          Rotten
## 168      Horror      97           R         3.2           1010           Fresh
## 169      Horror      85           R         3.2           1010           Fresh
## 170       Drama      96           R         5.8           1886           Fresh
## 171       Other     101          PG         3.1           1010           Fresh
## 172       Drama     126       PG-13         3.4          57933          Rotten
## 173 Documentary      98     Unrated         3.1           1010           Fresh
## 174      Action     103           R         3.1           1010           Fresh
## 175       Drama     112           R         2.0           9216          Rotten
## 176       Drama      92          PG         5.6         205065          Rotten
## 177       Drama      93           R         6.7          26010           Fresh
## 178      Action     100           R         6.7         192052          Rotten
## 179       Drama     140           R         5.3            183           Fresh
## 180       Drama      99          PG         3.8          10522           Fresh
## 181      Comedy     100          PG         3.1           1010           Fresh
## 182       Drama     142       PG-13         7.3         675907 Certified Fresh
## 183       Drama     118           R         6.8          51534 Certified Fresh
## 184       Drama     105           R         5.7            390          Rotten
## 185      Action     118       PG-13         7.4           1268          Rotten
## 186       Drama     102           R         6.4          34253           Fresh
## 187       Drama     115       PG-13         5.4           9654          Rotten
## 188       Drama     120           R         5.3            183           Fresh
## 189       Drama     115           R         3.8          10522           Fresh
## 190       Drama     112       PG-13         3.8          18141           Fresh
## 191       Drama     102           R         7.2          70994          Rotten
## 192       Drama     115           R         5.3            183           Fresh
## 193       Drama     116           R         3.8          10522           Fresh
## 194      Comedy      90          PG         7.2          44741           Fresh
## 195 Documentary      74     Unrated         7.3            285           Fresh
## 196       Drama     115           R         4.7           9525 Certified Fresh
## 197      Action      95       PG-13         4.7           9525 Certified Fresh
## 198 Documentary      84     Unrated         4.7           9525 Certified Fresh
## 199      Comedy      91           R         4.7           9525 Certified Fresh
## 200      Comedy      94          PG         4.7           9525 Certified Fresh
## 201 Documentary      82     Unrated         7.7          13285           Fresh
## 202       Drama     126           R         5.0         117688           Fresh
## 203       Drama      90           R         5.7            390          Rotten
## 204      Action      91          PG         5.7           5564          Rotten
## 205       Drama     108     Unrated         5.6           9003           Fresh
## 206       Drama      90           R         5.4          21704           Fresh
## 207       Drama      92           R         5.9           3473           Fresh
## 208     Mystery     110       PG-13         7.1         287476           Fresh
## 209     Mystery     149           R         7.4          94983           Fresh
## 210       Other     119           R         7.0          56185           Fresh
## 211       Drama     100           R         6.0           2441          Rotten
## 212     Mystery     125           R         7.1          25264          Rotten
## 213       Drama     105           R         3.0           9216          Rotten
## 214      Action     114          PG         6.2          16681          Rotten
## 215       Drama      86           R         3.7         132215          Rotten
## 216        Arts      85           R         6.9          87215 Certified Fresh
## 217      Action     105           R         7.3         121245 Certified Fresh
## 218     Mystery     110           R         6.4          71112          Rotten
## 219      Comedy      90       PG-13         6.7          72295           Fresh
## 220       Other      90           R         7.1          25264          Rotten
## 221       Drama     106           R         4.6           6228           Fresh
## 222      Comedy     112           R         6.9          87215 Certified Fresh
## 223       Drama      94           R         8.2         448434 Certified Fresh
## 224       Drama     105           R         4.7           9525 Certified Fresh
## 225 Documentary      90     Unrated         7.6           2849 Certified Fresh
## 226       Drama      97           R         3.3           1010           Fresh
## 227        Arts      86           R         6.5           5762           Fresh
## 228       Drama     123       PG-13         5.3            183           Fresh
## 229      Action     103           R         6.6         191935          Rotten
## 230 Documentary     267     Unrated         7.8            872           Fresh
## 231       Drama     135       PG-13         5.4           9654          Rotten
## 232       Drama     104       PG-13         5.4          56329          Rotten
## 233     Mystery      89           R         7.2           2098          Rotten
## 234       Drama     123           R         7.1           3146           Fresh
## 235      Action      92          PG         4.8          19187          Rotten
## 236       Drama     107       PG-13         7.1         110540          Rotten
## 237       Drama     114           R         7.4          96787 Certified Fresh
## 238       Drama      95           R         6.2           1935          Rotten
## 239     Mystery     110           R         6.3           5014           Fresh
## 240      Horror      97           R         7.1          25264          Rotten
## 241 Documentary      94       PG-13         7.9          38076 Certified Fresh
## 242      Action      89          PG         6.7         137405           Fresh
## 243       Drama     114           R         6.3           1803           Fresh
## 244     Mystery      85           R         7.1          25264          Rotten
## 245       Drama      98           R         7.5           4515 Certified Fresh
## 246      Comedy      97           R         4.8          18712          Rotten
## 247     Mystery     106           R         6.3          25054          Rotten
## 248      Comedy      84           R         3.8           1510          Rotten
## 249      Action     118           G         7.4           8544           Fresh
## 250       Drama     120       PG-13         3.7         132215          Rotten
## 251       Drama     124           R         7.7         183747 Certified Fresh
## 252       Drama      98           R         4.5          48519          Rotten
## 253       Drama     119          PG         5.1           4375          Rotten
## 254       Drama     123          PG         5.5          32751          Rotten
## 255      Horror     107           R         6.9          74294          Rotten
## 256 Documentary      86           G         7.5           1480           Fresh
## 257      Action     101       PG-13         5.1            703          Rotten
## 258      Action     111       PG-13         6.0         103789          Rotten
## 259        Arts     106     Unrated         7.5          42842 Certified Fresh
## 260      Action      95           R         6.8          26731          Rotten
## 261       Drama     129       PG-13         6.0          66171           Fresh
## 262      Comedy      92       PG-13         7.0         149437           Fresh
## 263       Drama     126          PG         6.7          12498           Fresh
## 264       Drama     107           R         6.7         297034 Certified Fresh
## 265      Comedy     101          PG         6.1          14901           Fresh
## 266     Mystery      97           R         6.4           1361           Fresh
## 267       Drama      93           R         5.3          30495          Rotten
## 268      Comedy      97       PG-13         6.9          12606 Certified Fresh
## 269       Drama     108           R         3.8          10522           Fresh
## 270       Drama      96           R         7.6           4143           Fresh
## 271       Drama      91          PG         6.5           2408          Rotten
## 272      Action     120       PG-13         7.0         201787 Certified Fresh
## 273     Mystery     113           G         7.1          19000           Fresh
## 274 Documentary      92           R         2.0           9216          Rotten
## 275       Drama     106          PG         5.4           9654          Rotten
## 276       Drama     110     Unrated         2.0           9216          Rotten
## 277      Horror      77           R         6.8           9025           Fresh
## 278   Animation      74           G         6.8           9025           Fresh
## 279       Drama     100           R         2.0           9216          Rotten
## 280        Arts     107           R         6.8           9025           Fresh
## 281      Comedy      87          PG         5.1           3336          Rotten
## 282     Mystery     116           R         7.2         252661 Certified Fresh
## 283       Drama     126     Unrated         5.9          82737          Rotten
## 284       Drama     100           R         6.5          42613           Fresh
## 285       Drama     129       PG-13         6.4          10126          Rotten
## 286       Other     110          PG         2.0           9216          Rotten
## 287       SciFi     113           R         2.0           9216          Rotten
## 288       Drama      87           R         3.0           9216          Rotten
## 289       Drama     102           R         5.9           2569          Rotten
## 290       Drama     115       PG-13         6.7          77762          Rotten
## 291      Comedy      89          PG         5.3          12322          Rotten
## 292       Drama     140       PG-13         8.2         315051 Certified Fresh
## 293     Mystery      93           R         5.6          44257          Rotten
## 294       Drama     119           R         5.7           8818          Rotten
## 295       SciFi     161          PG         7.4         368799 Certified Fresh
## 296       Drama     124           R         7.2         247105          Rotten
## 297        Arts     104       PG-13         6.0           2960          Rotten
## 298       SciFi      86       PG-13         5.2          46233          Rotten
## 299        Arts     111           R         6.5           9980          Rotten
## 300       Drama     108          PG         4.9           5136          Rotten
## 301       Drama     107           R         7.4          71572 Certified Fresh
## 302       Other     108           R         6.5          16480          Rotten
## 303       Drama     112           R         6.0          19898          Rotten
## 304       Drama     172           R         5.2         275125           Fresh
## 305       Drama      92          PG         6.9          15449           Fresh
## 306      Horror     108           R         3.0           9216          Rotten
## 307       Drama     115          PG         4.3           2145          Rotten
## 308      Comedy      91           R         3.0           9216          Rotten
## 309      Comedy      93           R         3.0           9216          Rotten
## 310       Drama     130           R         6.0           3745          Rotten
## 311       Drama     123           R         6.0           1887          Rotten
## 312       SciFi      91           R         2.0           9216          Rotten
## 313     Mystery     124           R         3.0           9216          Rotten
## 314       Drama     106       PG-13         5.7          17133          Rotten
## 315 Documentary      91           R         3.0           9216          Rotten
## 316       Drama     107           R         6.9          10786           Fresh
## 317      Comedy     100       PG-13         2.0           9216          Rotten
## 318       Drama      91           R         7.1          52449 Certified Fresh
## 319      Action     119           R         2.0           9216          Rotten
## 320      Action     116       PG-13         2.0           9216          Rotten
## 321      Comedy     107       PG-13         2.0           9216          Rotten
## 322       Drama      88     Unrated         4.3            739           Fresh
## 323      Horror      81           R         5.8           3145          Rotten
## 324       Drama      95          PG         4.1            739           Fresh
## 325       Drama     162           R         5.3            183           Fresh
## 326       Drama     107       PG-13         6.8          40133 Certified Fresh
## 327       Drama     135           R         5.0          47297 Certified Fresh
## 328       Drama     122           R         6.2          35868          Rotten
## 329      Comedy      96           R         7.4          34652           Fresh
## 330 Documentary      NA     Unrated         4.3            739           Fresh
## 331      Action      86       PG-13         4.3            739           Fresh
## 332        Arts     122           R         4.3            739           Fresh
## 333      Action      94          PG         4.3            739           Fresh
## 334       Drama     106           R         7.5          10250 Certified Fresh
## 335     Mystery     105       PG-13         4.3            739           Fresh
## 336     Mystery     129       PG-13         4.1            739           Fresh
## 337      Action      90           G         4.1            739           Fresh
## 338       Drama      99           R         6.6           6804           Fresh
## 339     Mystery     108           R         4.1            739           Fresh
## 340      Horror      89           R         4.1            739           Fresh
## 341       Drama     108       PG-13         6.2          12402           Fresh
## 342 Documentary      94       PG-13         4.1            739           Fresh
## 343      Action      86           R         4.1            739           Fresh
## 344     Mystery     105           R         4.1            739           Fresh
## 345     Mystery     112           R         4.1            739           Fresh
## 346       Drama      99           R         7.8          47065 Certified Fresh
## 347     Mystery     202           R         4.1            739           Fresh
## 348      Horror      92          PG         4.1            739           Fresh
## 349       Drama      97           R         5.8           1838           Fresh
## 350      Action     109          PG         5.7           4180          Rotten
## 351        Arts     116       PG-13         3.2           9904           Fresh
## 352        Arts      84          PG         3.2           9904           Fresh
## 353 Documentary     180     Unrated         3.2           9904           Fresh
## 354      Comedy     134           R         3.2           9904           Fresh
## 355       Drama      90           R         7.5           3448           Fresh
## 356      Action      98       PG-13         3.2           9904           Fresh
## 357       Drama      94       PG-13         6.7           4077          Rotten
## 358       Drama     101       PG-13         6.7           9291 Certified Fresh
## 359     Mystery     110           R         3.2           9904           Fresh
## 360      Comedy      82       PG-13         3.2           9904           Fresh
## 361      Action     104           R         3.2           9904           Fresh
## 362     Mystery     122          PG         3.2           9904           Fresh
## 363     Mystery     122           R         2.1           9904           Fresh
## 364       Drama      81           R         7.8         157701 Certified Fresh
## 365      Comedy      86       PG-13         2.1           9904           Fresh
## 366       Drama      84          PG         7.6          17960           Fresh
## 367       Drama     100           R         6.1          13682          Rotten
## 368      Action     105           R         5.2         275125           Fresh
## 369        Arts     121           R         5.2         275125           Fresh
## 370        Arts      92           R         5.2         275125           Fresh
## 371      Comedy      87       PG-13         1.9          73219          Rotten
## 372       SciFi      95          PG         3.1           8319          Rotten
## 373 Documentary     116           R         2.1           9904           Fresh
## 374       Drama     112           R         2.1         122980 Certified Fresh
## 375       Drama     109       PG-13         7.1           2271          Rotten
## 376 Documentary      87           R         7.1           4907 Certified Fresh
## 377       Drama      90       PG-13         6.2           2830          Rotten
## 378 Documentary      85       PG-13         7.5            679           Fresh
## 379     Mystery     113           R         2.1           9904           Fresh
## 380       Drama     126           R         8.3         572236 Certified Fresh
## 381 Documentary      86     Unrated         2.1           9904           Fresh
## 382      Comedy      93       PG-13         2.1           9904           Fresh
## 383 Documentary      90          PG         2.1           9904           Fresh
## 384       Drama     131           R         7.6         318019 Certified Fresh
## 385       Drama     122           R         8.1         582091 Certified Fresh
## 386       Drama     133           R         5.9         103378 Certified Fresh
## 387     Mystery      92       PG-13         5.9          44248          Rotten
## 388       Drama     146       PG-13         8.1         303529 Certified Fresh
## 389       Drama     154           R         7.4           9876 Certified Fresh
## 390       Drama     103           R         6.2          63511          Rotten
## 391       Drama     120       PG-13         7.4          82378 Certified Fresh
## 392       Drama     108           R         6.7          23821 Certified Fresh
## 393       Drama     110          PG         6.9         211129          Rotten
## 394 Documentary      88          PG         8.4           3128           Fresh
## 395       Drama      91           R         5.9          82737          Rotten
## 396       Other     112          PG         5.8           1816          Rotten
## 397       Drama     104       PG-13         5.7            390          Rotten
## 398      Action     103          PG         6.4          54829          Rotten
## 399       Drama     134     Unrated         7.0           4821 Certified Fresh
## 400       Drama     108           R         5.8          19115 Certified Fresh
## 401      Comedy      95           R         5.2           7881          Rotten
## 402       Drama     127       PG-13         7.1         246343           Fresh
## 403      Action      83       PG-13         3.5          10055          Rotten
## 404       Drama     125           R         7.4          69338 Certified Fresh
## 405      Action     118          PG         5.9          24472          Rotten
## 406      Action      92           R         6.6         115026          Rotten
## 407 Documentary      95     Unrated         7.8            651 Certified Fresh
## 408      Comedy      93           R         3.8          18141           Fresh
## 409       Drama     129       PG-13         5.8           3358          Rotten
## 410       Other     105          PG         6.3           4550           Fresh
## 411       Other     125     Unrated         7.0          16262           Fresh
## 412 Documentary      83     Unrated         8.4           1571           Fresh
## 413      Comedy      88       PG-13         4.9          10271          Rotten
## 414      Action     138       PG-13         6.6         204042           Fresh
## 415      Horror     100           R         4.5          16824          Rotten
## 416        Arts      89     Unrated         7.5           6061 Certified Fresh
## 417      Action     100          PG         4.5          10651          Rotten
## 418 Documentary     122          PG         7.9           1346           Fresh
## 419       Drama     105           R         6.4          60483           Fresh
## 420       Drama      83       PG-13         5.3           1308          Rotten
## 421       Drama     116           R         7.3           4451           Fresh
## 422       Drama      91           R         7.6           7545 Certified Fresh
## 423      Action      85       PG-13         6.2           3416          Rotten
## 424      Horror      91           R         5.5          73617          Rotten
## 425       Drama     102           R         6.4          14970          Rotten
## 426      Comedy      88       PG-13         4.5          16824          Rotten
## 427      Comedy     119       PG-13         6.3         124250 Certified Fresh
## 428       Drama      95           R         4.9           2120          Rotten
## 429      Comedy     105       PG-13         5.5          73617          Rotten
## 430       Drama     104          PG         6.9           2931           Fresh
## 431     Mystery     108           R         5.5          73617          Rotten
## 432      Action      85          PG         6.0           1680          Rotten
## 433       Drama     130           R         7.8          75468           Fresh
## 434      Comedy     117           R         5.4          19603          Rotten
## 435        Arts      91           R         7.8           1663          Rotten
## 436       Drama     110           R         7.2          14589           Fresh
## 437       SciFi      85           R         2.1         122980 Certified Fresh
## 438       Other     107       PG-13         2.1         122980 Certified Fresh
## 439       Drama     110       PG-13         5.7           2701          Rotten
## 440      Comedy      87           R         6.2          11259          Rotten
## 441       Drama      88           R         6.0           1890           Fresh
## 442       Drama      90           R         6.7          20655 Certified Fresh
## 443       Drama      90          PG         7.7          56919          Rotten
## 444 Documentary      86     Unrated         2.1         122980 Certified Fresh
## 445 Documentary      94     Unrated         2.1         122980 Certified Fresh
## 446 Documentary      81           G         2.1         122980 Certified Fresh
## 447       Other      75           R         2.1         122980 Certified Fresh
## 448     Mystery     111           R         2.1         122980 Certified Fresh
## 449     Mystery      96           R         2.1         122980 Certified Fresh
## 450      Comedy      93          PG         7.1          25264          Rotten
## 451      Comedy      93           R         7.1          25264          Rotten
## 452       Drama     144       PG-13         6.3           8685          Rotten
## 453       Drama     115           R         8.0         168032 Certified Fresh
## 454      Horror      83           R         3.4           2959          Rotten
## 455     Mystery     133           R         6.7         134031          Rotten
## 456      Action      91          PG         6.7         134031          Rotten
## 457       Drama     135           R         6.5          12450           Fresh
## 458        Arts     115          PG         6.7         134031          Rotten
## 459       Drama     111          PG         7.3           2869           Fresh
## 460       Drama     123           R         7.7          13285           Fresh
## 461        Arts     128           R         7.4           8030          Rotten
## 462        Arts      90           R         5.3           3461          Rotten
## 463   Animation      68           G         6.4           3970 Certified Fresh
## 464       Drama     110           R         7.1          99192          Rotten
## 465       Drama     117       NC-17         6.4           1043           Fresh
## 466   Animation     108          PG         6.5         126257 Certified Fresh
## 467      Comedy      93          PG         7.0          15491          Rotten
## 468       Drama     119           R         7.0           4121           Fresh
## 469       Drama      99          PG         7.4          69338 Certified Fresh
## 470       Drama     134       PG-13         6.2          12402           Fresh
## 471      Comedy      97          PG         6.8           2530           Fresh
## 472       Drama      97       PG-13         6.9           2857           Fresh
## 473       Drama     194       PG-13         7.7         756602 Certified Fresh
## 474       Drama     113          PG         6.2          12402           Fresh
## 475       Drama     136          PG         6.7          58907           Fresh
## 476      Action     103           R         7.0          15491          Rotten
## 477     Mystery     121           R         7.0          15491          Rotten
## 478      Comedy      85       PG-13         7.0          15491          Rotten
## 479      Comedy      82          PG         7.0          15491          Rotten
## 480       Drama      97           R         6.5           4251           Fresh
## 481       Drama      92           R         6.0           2934           Fresh
## 482       Drama     111          PG         7.6          42208          Rotten
## 483      Action     177           R         5.9          54597          Rotten
## 484      Comedy      97       PG-13         6.4          60483           Fresh
## 485       Drama      83       NC-17         7.0          22601 Certified Fresh
## 486       Drama      96           R         7.0         240033 Certified Fresh
## 487      Comedy      81       PG-13         6.4          60483           Fresh
## 488 Documentary     100           R         8.2           6345           Fresh
## 489        Arts     115     Unrated         7.5           9990           Fresh
## 490      Action      93           R         6.3          42295          Rotten
## 491       Drama      88       PG-13         5.6          37938          Rotten
## 492     Mystery     105           R         6.4          42408           Fresh
## 493      Action      88          PG         6.7         137222          Rotten
## 494      Comedy      95       PG-13         6.4          60483           Fresh
## 495       Drama      94           R         6.3          63219 Certified Fresh
## 496 Documentary     103           R         7.8          39320 Certified Fresh
## 497       SciFi      95           R         5.6           1915          Rotten
## 498      Comedy      94          PG         5.1           1674          Rotten
## 499      Comedy     118       PG-13         5.9           2096           Fresh
## 500       Drama     104           R         5.9           4072          Rotten
## 501       Drama     106           R         6.1           7076           Fresh
## 502     Mystery      96           R         5.4           2380          Rotten
## 503      Action      83           G         7.6          78862          Rotten
## 504      Action      96       PG-13         4.3          83724          Rotten
## 505       Drama      91           R         7.4          30641 Certified Fresh
## 506 Documentary      83          PG         3.8          10522           Fresh
## 507       Drama      80          PG         7.5          27601 Certified Fresh
## 508      Horror      94           R         3.8          10522           Fresh
## 509       Drama     120       PG-13         6.8          26360          Rotten
## 510     Mystery      97       PG-13         6.3          54771          Rotten
## 511      Comedy     112           R         5.8          11838          Rotten
## 512       Drama     108       PG-13         6.0           9669           Fresh
## 513       Drama     117       PG-13         6.1          15491          Rotten
## 514      Comedy     135           R         7.7         309494           Fresh
## 515       SciFi      98          PG         6.5           6909           Fresh
## 516       Drama     100           R         5.7           6343           Fresh
## 517     Mystery     121          PG         6.8          72176           Fresh
## 518       Drama     128       PG-13         5.9          11001          Rotten
## 519       Drama     106           R         6.8           9025           Fresh
## 520     Mystery     115           R         3.8          10522           Fresh
## 521      Comedy     110       PG-13         5.2          10535          Rotten
## 522       Drama     124           R         7.0          56201          Rotten
## 523       Drama     137           R         7.0           9725          Rotten
## 524       Other      97          PG         3.8          10522           Fresh
## 525      Comedy      87           R         5.4           6811          Rotten
## 526 Documentary      89          PG         6.9           1943 Certified Fresh
## 527 Documentary      99           R         7.1          32338 Certified Fresh
## 528       Drama     112           R         6.7         134031          Rotten
## 529     Mystery      98           R         3.8          10522           Fresh
## 530      Horror      87           R         3.8          10522           Fresh
## 531       Drama     103           R         7.3           8561          Rotten
## 532      Action      95           R         7.6         128298 Certified Fresh
## 533       Drama      99           R         6.5         152216          Rotten
## 534       Drama     178       PG-13         7.1         163490          Rotten
## 535       Drama      93           R         7.0          36909           Fresh
## 536       Drama     103       PG-13         8.4           1141           Fresh
## 537 Documentary      78     Unrated         3.8          10522           Fresh
## 538       Drama     100           R         7.0           8320          Rotten
## 539       Drama     100           R         7.1          86953           Fresh
## 540      Action      84       PG-13         3.8          10522           Fresh
## 541     Mystery     107       PG-13         3.8          10522           Fresh
## 542      Horror      89           R         6.0          59076          Rotten
## 543      Comedy     127       PG-13         6.4         154148          Rotten
## 544       Drama     106          PG         7.8          12450           Fresh
## 545     Mystery      90           R         4.2           3302          Rotten
## 546 Documentary      90     Unrated         7.8            180           Fresh
## 547       Drama     102          PG         7.0          15491          Rotten
## 548       Drama      85          PG         7.8          26628           Fresh
## 549        Arts     139     Unrated         7.5            281           Fresh
## 550       Drama     135           R         6.4           8604          Rotten
## 551      Comedy      93           R         3.8          10522           Fresh
## 552     Mystery     110           R         6.2          83424          Rotten
## 553       Drama      88     Unrated         6.5           3505          Rotten
## 554       Drama     130       PG-13         6.8           2530           Fresh
## 555       Drama     104           R         7.7          13285           Fresh
## 556     Mystery     118           R         4.9          18005          Rotten
## 557       Drama     104           R         7.5          64873          Rotten
## 558     Mystery      94           R         6.9          15444 Certified Fresh
## 559       Drama     112           R         7.8         246587 Certified Fresh
## 560      Comedy      89       PG-13         5.6          14986          Rotten
## 561      Comedy      86           R         4.7          13525          Rotten
## 562       Drama      97           R         6.8           2530           Fresh
## 563      Action     110           R         6.7         290958 Certified Fresh
## 564       Drama     103          PG         6.6          68871 Certified Fresh
## 565     Mystery     100           R         5.5          10886          Rotten
## 566      Comedy      94           R         3.8          10522           Fresh
## 567       Drama     140           R         7.2          66489          Rotten
## 568 Documentary      40           G         7.0            723           Fresh
## 569       Drama     105          PG         7.6           6114           Fresh
## 570       Drama      88           R         6.7         151934          Rotten
## 571       Drama      88           G         7.2         134270 Certified Fresh
## 572       Drama     122           R         7.9          99582 Certified Fresh
## 573       Drama      95          PG         7.6           4369           Fresh
## 574     Mystery     128           R         7.1           5115           Fresh
## 575       Drama     104          PG         6.3          19383          Rotten
## 576      Comedy     106          PG         5.7           2181           Fresh
## 577       Other     132          PG         6.2           9832           Fresh
## 578       Drama     154       PG-13         7.8          58668           Fresh
## 579      Comedy     119           R         8.0          13614 Certified Fresh
## 580       Drama     110           R         7.6         184656 Certified Fresh
## 581       Drama     101       PG-13         7.3          12285 Certified Fresh
## 582      Comedy     107          PG         3.8          10522           Fresh
## 583     Mystery     122          PG         6.6          16137           Fresh
## 584       Drama     115           R         7.1          34298           Fresh
## 585 Documentary      94     Unrated         7.4           1935           Fresh
## 586     Mystery     109           R         6.4          15116           Fresh
## 587       Drama     142       PG-13         7.2           5016          Rotten
## 588       Drama     109          PG         7.7          20738           Fresh
## 589       Drama      80           R         7.5            899          Rotten
## 590      Action      81           R         7.6         123769           Fresh
## 591       Other     127       PG-13         7.0          79866           Fresh
## 592   Animation      83           G         7.6         160237 Certified Fresh
## 593      Action      94          PG         6.3          24595          Rotten
## 594        Arts     112     Unrated         7.0          16883 Certified Fresh
## 595 Documentary      93          PG         8.4            390           Fresh
## 596      Horror      91           R         6.9          19539          Rotten
## 597      Action     116          PG         5.7          48718          Rotten
## 598      Horror      89     Unrated         6.1          26301          Rotten
## 599        Arts     124           R         7.0          26943          Rotten
## 600       Drama     124       PG-13         6.9          87215 Certified Fresh
## 601       Drama      97       PG-13         7.1          25264          Rotten
## 602       Drama     107           R         6.2          16717           Fresh
## 603       Drama     139           R         7.3         183717 Certified Fresh
## 604 Documentary      94           R         7.8           3998 Certified Fresh
## 605       Drama     106           R         6.9           6336           Fresh
## 606       Drama      90           R         6.4           1406           Fresh
## 607       Drama     143       PG-13         7.1          25264          Rotten
## 608 Documentary      89     Unrated         7.8           9675 Certified Fresh
## 609       Drama     100           R         7.8         414650 Certified Fresh
## 610      Comedy      82           R         7.6           7545 Certified Fresh
## 611       Drama     116       PG-13         7.2          66489          Rotten
## 612       Drama      93           R         7.8            333           Fresh
## 613       Drama      98          PG         8.4           1141           Fresh
## 614      Action      90          PG         5.7           3373          Rotten
## 615      Comedy      96          PG         6.2          12402           Fresh
## 616 Documentary      91     Unrated         7.3           9906           Fresh
## 617       Drama      90       PG-13         7.8            333           Fresh
## 618      Comedy      95           R         6.2          12402           Fresh
## 619       Drama      89           R         7.1          25264          Rotten
## 620      Horror     104           R         5.4           7284          Rotten
## 621     Mystery     121           R         6.7          58907           Fresh
## 622      Action     112       PG-13         5.6          57251          Rotten
## 623   Animation      85           G         2.8           3790          Rotten
## 624       Drama      95           R         7.1          25264          Rotten
## 625     Mystery      99           R         4.3          11125          Rotten
## 626       Drama      94           R         7.1          25264          Rotten
## 627       Drama      95       PG-13         7.1          25264          Rotten
## 628       Drama     103           R         7.0          16755          Rotten
## 629       Drama     102           R         6.8           2530           Fresh
## 630       Drama     126           R         8.2           3967           Fresh
## 631     Mystery      99       PG-13         5.9          63672          Rotten
## 632       Drama      95           R         8.0            486          Rotten
## 633       Drama     107           R         7.4           1268          Rotten
## 634   Animation      92          PG         5.3          54363          Rotten
## 635        Arts     103          PG         7.7          11197 Certified Fresh
## 636       Drama     119     Unrated         6.6          12496 Certified Fresh
## 637     Mystery      88          PG         6.8          16366           Fresh
## 638       Drama      93          PG         7.4           1268          Rotten
## 639       Drama     146           R         6.4           3138           Fresh
## 640       Drama     139          PG         7.2          35096 Certified Fresh
## 641      Comedy      82           R         6.7          46794          Rotten
## 642      Action      87           R         5.9          10087           Fresh
## 643      Action     120          PG         3.4          66054          Rotten
## 644      Comedy      97       PG-13         4.2          43574          Rotten
##     critics_score audience_rating audience_score best_pic_nom Facebook_Likes
## 1              10         Upright             21           no             48
## 2              43         Upright             34           no            490
## 3              91         Upright             91           no          11700
## 4              27         Upright             23           no            230
## 5              81         Upright             77           no         172221
## 6              91         Upright             86           no         211873
## 7              30         Upright             21           no            171
## 8              33         Upright             31           no            355
## 9              90         Upright             89           no         292000
## 10             56         Upright             45           no           3611
## 11             89         Upright             75           no         124450
## 12             30         Upright             21           no            882
## 13             30         Upright             39           no            308
## 14             45         Spilled             53           no          48486
## 15             90         Upright             89           no         450757
## 16             34         Upright             24           no            393
## 17             10         Upright             21           no            237
## 18             92         Upright             72           no            748
## 19             19         Spilled             24           no         154083
## 20             47         Upright             36           no           2098
## 21             41         Upright             35           no           5095
## 22             55         Upright             56           no           2489
## 23             44         Upright             45           no           1205
## 24             84         Upright             89           no            996
## 25             79         Upright             77           no          24106
## 26             64         Upright             80           no         147123
## 27             54         Upright             45           no           1099
## 28             77         Spilled             43           no         264798
## 29             64         Upright             54           no         126679
## 30             73         Upright             79           no         218458
## 31             91         Upright             71           no           2039
## 32             68         Upright             77           no          43388
## 33             69         Upright             85           no          30426
## 34             69         Upright             70           no          79957
## 35             40         Spilled             47           no          21714
## 36             52         Spilled             55           no         214863
## 37             35         Spilled             46           no           1039
## 38             21         Upright             33           no           1062
## 39             98         Upright             94           no          73441
## 40             77         Upright             62           no           4455
## 41             51         Upright             40           no           3118
## 42             36         Spilled             35           no           2465
## 43             44         Upright             35           no           3284
## 44             37         Spilled             40           no          19085
## 45             21         Upright             20           no           2522
## 46             54         Upright             44           no         129150
## 47             11         Upright             22           no           4478
## 48             24         Spilled             17           no           2754
## 49             31         Upright             22           no           4154
## 50             22         Upright             23           no           3291
## 51             44         Upright             54           no          69770
## 52             67         Spilled             59           no           5161
## 53             46         Upright             56           no          69166
## 54             41         Upright             61           no           2705
## 55             45         Spilled             57           no           6143
## 56             14         Spilled             37           no           1863
## 57             13         Spilled             37           no           9271
## 58             41         Spilled             55           no           5204
## 59             36         Spilled             35           no          10975
## 60             34         Spilled             43           no          11125
## 61             44         Spilled             54           no            445
## 62             42         Spilled             56           no           2652
## 63             96         Upright             96           no          47334
## 64             66         Upright             68           no         121175
## 65             43         Spilled             58           no           1317
## 66             32         Spilled             52           no          39684
## 67             92         Upright             90           no          57802
## 68             75         Spilled             65           no           2635
## 69             34         Upright             32           no           7750
## 70             22         Upright             34           no           5849
## 71             59         Upright             47           no           7385
## 72             75         Spilled             65           no          15870
## 73             24         Spilled             38           no          69131
## 74             45         Upright             55           no          61287
## 75             65         Spilled             55           no           8016
## 76             66         Upright             57           no          42921
## 77             75         Spilled             85           no         231004
## 78             34         Upright             44           no           5401
## 79             31         Spilled             24           no          72944
## 80             42         Upright             43           no           9761
## 81             53         Upright             43           no           7610
## 82             71         Upright             81           no          72881
## 83             32         Spilled             35           no            555
## 84             29         Spilled             34           no          54363
## 85             63         Upright             82           no           9521
## 86             34         Upright             25           no          15149
## 87             46         Spilled             51           no          12226
## 88             22         Upright             21           no          13287
## 89             38         Upright             37           no          10504
## 90             46         Spilled             59           no          62963
## 91             33         Upright             32           no          10320
## 92             78         Upright             87           no          16264
## 93             78         Spilled             41           no          83233
## 94             40         Upright             75           no          60453
## 95             40         Spilled             35           no          21645
## 96             35         Upright             26           no          12944
## 97             37         Upright             28          yes          12538
## 98             62         Upright             74           no          81115
## 99             34         Upright             33          yes           5699
## 100            95         Upright             90           no          89152
## 101            21         Upright             20           no          14790
## 102            33         Upright             23           no          12068
## 103            43         Spilled             56           no          16188
## 104            39         Spilled             33           no          83388
## 105            10         Spilled             31          yes          12687
## 106            49         Upright             39           no           3144
## 107            36         Upright             35           no          16165
## 108            21         Spilled             24           no          95505
## 109            61         Spilled             70           no          38873
## 110            88         Upright             91          yes          10764
## 111            41         Upright             32           no          15232
## 112            36         Upright             27           no          11024
## 113            88         Upright             91           no         224598
## 114            14         Spilled             35           no          63433
## 115            36         Upright             27           no          18444
## 116            15         Spilled             36           no          11584
## 117            52         Upright             64           no          83076
## 118            38         Spilled             40           no          77844
## 119            86         Upright             88           no           4764
## 120            59         Upright             48           no          18275
## 121            42         Upright             33           no          15945
## 122            44         Spilled             36           no          32438
## 123            14         Spilled             55           no          40054
## 124            33         Spilled             41           no          17406
## 125            22         Upright             34           no            582
## 126            23         Upright             35           no            534
## 127            32         Spilled             41           no          29803
## 128            81         Upright             87          yes          15850
## 129            22         Upright             66           no          18270
## 130            23         Upright             35           no            659
## 131            85         Upright             72           no          19393
## 132            23         Spilled             37           no           2217
## 133            97         Upright             86           no          16184
## 134            44         Upright             34           no          26057
## 135            83         Upright             79           no          17067
## 136            24         Spilled             38           no          17071
## 137            68         Spilled             37           no          50983
## 138            37         Spilled             51           no         106576
## 139            38         Spilled             52           no           4015
## 140            39         Spilled             53           no          32857
## 141            93         Upright             80           no          45327
## 142            45         Spilled             58           no          25046
## 143            35         Upright             73           no          21132
## 144            28         Spilled             59           no          14831
## 145            34         Upright             25           no           5810
## 146            60         Upright             76           no          23343
## 147            35         Upright             33           no          25220
## 148            20         Upright             19           no          23259
## 149            38         Upright             29           no          18097
## 150            39         Upright             30           no          17029
## 151            40         Upright             31           no           4823
## 152            40         Upright             55           no          32355
## 153            42         Upright             33           no            795
## 154            33         Spilled             43           no          21768
## 155            71         Upright             87           no          25593
## 156            34         Spilled             49           no          91997
## 157            16         Spilled             39           no          26928
## 158            37         Upright             38           no          26171
## 159            39         Upright             40           no          21958
## 160            46         Spilled             38           no          21327
## 161            46         Upright             37           no          73378
## 162            35         Upright             34           no          26646
## 163            65         Upright             85           no          23086
## 164            36         Upright             37           no          22530
## 165            72         Upright             89           no          24310
## 166            38         Upright             39           no          21814
## 167            59         Spilled             47           no          26683
## 168            40         Upright             41           no          13073
## 169            41         Upright             42           no            415
## 170            85         Spilled             49           no          31454
## 171            43         Upright             44           no           2037
## 172            23         Spilled             37           no          26840
## 173            45         Upright             46           no           1177
## 174            46         Upright             47           no            644
## 175            52         Upright             42           no          26161
## 176            40         Spilled             54           no          34817
## 177            69         Upright             75           no          30025
## 178            33         Upright             68           no          57108
## 179            49         Upright             59           no          34696
## 180            33         Upright             32           no          35174
## 181            23         Upright             24           no           1963
## 182            84         Upright             81           no          32871
## 183            88         Upright             71           no          34780
## 184            29         Spilled             25           no          31385
## 185            77         Spilled             78           no         249355
## 186            68         Spilled             49           no          31695
## 187            55         Upright             45           no          32392
## 188            47         Upright             57           no          32593
## 189            36         Upright             35           no          36199
## 190            46         Upright             51           no          34728
## 191            46         Upright             78           no          25590
## 192            50         Upright             60           no          35005
## 193            34         Upright             33           no          33424
## 194            76         Upright             80           no            921
## 195            78         Upright             89           no          14168
## 196            55         Upright             43           no          33284
## 197            56         Upright             44           no         111036
## 198            57         Upright             45           no          83587
## 199            58         Upright             46           no          96120
## 200            59         Upright             47           no          13191
## 201            85         Upright             87           no          31549
## 202            44         Upright             45           no           2333
## 203            29         Spilled             25           no          80806
## 204            24         Spilled             55           no          19719
## 205            64         Spilled             40           no          37723
## 206            63         Spilled             52           no           2579
## 207            60         Spilled             34           no           1971
## 208            63         Upright             71           no         320952
## 209            67         Upright             86           no         105345
## 210            90         Upright             73           no         322403
## 211            46         Spilled             55           no          15916
## 212            69         Spilled             78           no         431441
## 213            50         Upright             40           no          16235
## 214            31         Spilled             56           no         112175
## 215            49         Spilled             44           no           3285
## 216            63         Upright             71           no         224146
## 217            83         Upright             81           no          20553
## 218            22         Spilled             46           no         211930
## 219            64         Upright             65           no           2684
## 220            69         Spilled             78           no         315302
## 221            45         Upright             55           no          25550
## 222            64         Upright             72           no         214017
## 223            89         Upright             93           no          25763
## 224            55         Upright             43           no           2945
## 225           100         Upright             84           no          24098
## 226            45         Upright             36           no          40484
## 227            64         Spilled             48           no           2689
## 228            45         Upright             55           no          16149
## 229            30         Spilled             58           no          14161
## 230           100         Upright             73           no            902
## 231            56         Upright             46           no          91434
## 232            44         Spilled             31           no          54046
## 233            44         Upright             86           no          12004
## 234            89         Upright             71           no          51852
## 235            41         Spilled             25           no          42990
## 236            38         Spilled             59           no          42323
## 237            90         Upright             81          yes          50419
## 238            35         Upright             70           no          41890
## 239            75         Spilled             51           no          43286
## 240            69         Spilled             78           no         224355
## 241           100         Upright             87           no          15046
## 242            64         Upright             66           no          46719
## 243            67         Upright             65           no          52542
## 244            70         Spilled             79           no         223487
## 245            79         Upright             76           no          56948
## 246            37         Spilled             38           no           8306
## 247            43         Spilled             49           no           1261
## 248            10         Upright             63           no          55486
## 249            88         Upright             83           no         316718
## 250            48         Spilled             43           no          59558
## 251            80         Upright             86           no          42700
## 252            21         Upright             36           no          57657
## 253            40         Upright             85           no          69252
## 254            15         Spilled             36           no          53413
## 255            53         Upright             78           no           1173
## 256            75         Upright             80           no          63391
## 257            57         Spilled             52           no           1655
## 258            51         Spilled             51           no          21583
## 259            94         Upright             81           no          55692
## 260            58         Upright             65           no          13607
## 261            68         Upright             60           no          49631
## 262            80         Upright             85           no         322254
## 263            75         Upright             67           no          63354
## 264            83         Upright             71           no          55838
## 265            67         Spilled             50           no          12908
## 266            86         Spilled             81           no          13961
## 267            16         Spilled             28           no          55392
## 268            85         Upright             69           no         103175
## 269            39         Upright             38           no          55889
## 270           100         Upright             82           no          70996
## 271            36         Upright             68           no          87423
## 272            85         Upright             71           no          89600
## 273            89         Upright             82           no           3382
## 274            33         Upright             23           no           2480
## 275            57         Upright             47           no          71411
## 276            35         Upright             25           no          84528
## 277            60         Upright             76           no          34839
## 278            64         Upright             76           no           3133
## 279            36         Upright             26          yes          79906
## 280            61         Upright             77           no           6521
## 281            44         Spilled             40           no          52546
## 282            93         Upright             76           no         335672
## 283            47         Spilled             60           no          74451
## 284            63         Upright             64           no          72622
## 285            29         Upright             72           no          94797
## 286            33         Upright             23           no          94599
## 287            34         Upright             24           no           1354
## 288            46         Upright             36           no          72031
## 289            40         Spilled             34           no          93333
## 290            22         Upright             74           no          84842
## 291            15         Spilled             55           no          20233
## 292            82         Upright             92           no          81982
## 293            28         Spilled             42           no          40978
## 294            26         Spilled             41           no          82556
## 295            82         Upright             79           no           2039
## 296            48         Upright             80           no          94905
## 297            21         Spilled             48           no          13679
## 298            24         Spilled             23           no          34487
## 299            25         Upright             61           no           1738
## 300             5         Spilled             13           no          84182
## 301            79         Upright             87           no          70007
## 302            52         Spilled             54           no          55175
## 303            46         Spilled             38           no          78226
## 304            57         Upright             61           no          83446
## 305            97         Upright             80           no          84166
## 306            45         Upright             35           no          26057
## 307            13         Spilled             51           no          73988
## 308            47         Upright             37           no          52686
## 309            48         Upright             38           no          54286
## 310            54         Spilled             39           no          72652
## 311            55         Spilled             50           no          80645
## 312            51         Upright             41           no          18940
## 313            52         Upright             42           no         110552
## 314            52         Spilled             33           no          85811
## 315            54         Upright             44           no          13962
## 316            68         Upright             67           no          88510
## 317            51         Upright             41           no          99328
## 318            85         Upright             80           no          99359
## 319            53         Upright             43           no          23761
## 320            54         Upright             44           no          78309
## 321            55         Upright             45           no           1722
## 322            57         Upright             45           no          92370
## 323            40         Spilled             41           no          47657
## 324            50         Upright             39           no          92574
## 325            48         Upright             58          yes          84959
## 326            78         Upright             79           no          82818
## 327            55         Upright             44           no         113218
## 328            22         Spilled             48           no         124705
## 329            71         Upright             82           no          39319
## 330            53         Upright             41           no          44555
## 331            54         Upright             42           no          11372
## 332            55         Upright             43           no           5354
## 333            56         Upright             44           no           4671
## 334            97         Upright             87           no         105580
## 335            58         Upright             46           no          65641
## 336            45         Upright             34           no          46434
## 337            46         Upright             35           no           5052
## 338            79         Upright             68           no         121777
## 339            48         Upright             37           no           6150
## 340            49         Upright             38           no           1031
## 341            63         Spilled             53           no         149608
## 342            52         Upright             41           no           1614
## 343            53         Upright             42           no           5481
## 344            54         Upright             43           no          35780
## 345            55         Upright             44           no          33901
## 346            80         Upright             87           no          92342
## 347            57         Upright             46          yes          64024
## 348            58         Upright             47           no          62998
## 349            71         Spilled             43           no         111769
## 350            68         Spilled             44           no          25780
## 351            37         Upright             31           no          32664
## 352            38         Upright             32           no          12890
## 353            39         Upright             33           no          17227
## 354            40         Upright             34           no           1258
## 355           100         Upright             89           no         101712
## 356            42         Upright             36           no          15419
## 357            40         Upright             66           no         104074
## 358            76         Upright             71           no          10914
## 359            45         Upright             39           no          83484
## 360            46         Upright             40           no          29388
## 361            47         Upright             41           no         104274
## 362            48         Upright             42          yes         123996
## 363            29         Upright             20           no            379
## 364            93         Upright             90           no         112027
## 365            11         Upright             22           no           3450
## 366            77         Upright             86           no         110804
## 367            54         Spilled             37           no         101829
## 368            58         Upright             62           no          85367
## 369            59         Upright             63           no          86217
## 370            60         Upright             64           no          82622
## 371            32         Spilled             19           no          22289
## 372            22         Spilled             17           no          32356
## 373            29         Upright             20          yes           2100
## 374            36         Upright             34           no         113693
## 375            52         Upright             64           no         121635
## 376            54         Upright             44           no          23031
## 377            25         Upright             64           no         107881
## 378            55         Upright             43           no          92499
## 379            29         Upright             20           no           4902
## 380            67         Upright             66          yes          22194
## 381            31         Upright             22           no            254
## 382            32         Upright             23           no          23062
## 383            33         Upright             24           no          26088
## 384            54         Upright             84           no            475
## 385            93         Upright             86          yes          14831
## 386            43         Upright             44          yes          30010
## 387            55         Spilled             55           no           2523
## 388            76         Upright             89          yes          13808
## 389            89         Upright             79           no           4631
## 390            22         Spilled             55           no           1579
## 391            91         Upright             74           no          19769
## 392            79         Upright             70           no           1687
## 393            54         Upright             83           no          17416
## 394            87         Upright             89           no          14161
## 395            44         Spilled             57           no           4628
## 396            38         Spilled             44           no          43028
## 397            29         Spilled             25           no          31488
## 398            55         Spilled             65           no         337142
## 399            78         Upright             64           no          15972
## 400            74         Spilled             35           no          23240
## 401            11         Spilled             35           no          86237
## 402            60         Upright             73           no          24350
## 403            18         Spilled             30           no           3768
## 404            81         Upright             81           no           1766
## 405            32         Spilled             49           no          11951
## 406            29         Upright             63           no          35226
## 407            91         Upright             81           no           3499
## 408            46         Upright             51           no           6081
## 409            53         Upright             65           no          14165
## 410            71         Spilled             50           no         125103
## 411            72         Upright             78           no           6930
## 412            90         Upright             93           no           2407
## 413             8         Spilled             35           no          92380
## 414            61         Spilled             76           no           1235
## 415            10         Spilled             31           no           2707
## 416            84         Upright             85           no          23950
## 417            13         Spilled             31           no          71460
## 418            94         Upright             85           no          71476
## 419            71         Upright             61           no          26839
## 420            40         Spilled             56           no           2699
## 421            70         Upright             83           no          48638
## 422            87         Upright             88           no           1576
## 423            21         Spilled             43           no         106355
## 424            14         Spilled             37           no            578
## 425            61         Spilled             70           no          92456
## 426            10         Spilled             31           no          26662
## 427            75         Spilled             52           no           3326
## 428            40         Spilled             35           no          11608
## 429            15         Spilled             38           no           3632
## 430            83         Upright             76           no          15999
## 431            17         Spilled             40           no           5839
## 432            33         Upright             65           no         121276
## 433            90         Upright             88           no           4482
## 434            40         Upright             60           no         112760
## 435            40         Upright             83           no          89942
## 436            91         Upright             78           no           3112
## 437            33         Upright             31           no          22899
## 438            34         Upright             32           no          92813
## 439            23         Spilled             40           no           1569
## 440            53         Upright             67           no          23907
## 441            67         Spilled             49           no          11905
## 442            83         Upright             66           no          24082
## 443            55         Upright             78           no           4368
## 444            37         Upright             35           no          34073
## 445            38         Upright             36           no          39269
## 446            39         Upright             37           no          34798
## 447            40         Upright             38           no          22679
## 448            41         Upright             39           no          17585
## 449            32         Upright             21           no           9913
## 450            67         Spilled             76           no         231804
## 451            68         Spilled             77           no          17087
## 452            43         Spilled             52           no          25190
## 453            98         Upright             90           no          13752
## 454            11         Spilled             24           no         116325
## 455            61         Spilled             75           no            581
## 456            62         Spilled             76           no          15362
## 457            75         Spilled             65           no          36017
## 458            64         Spilled             78           no         461110
## 459            81         Upright             72           no          35867
## 460            85         Upright             87           no           1950
## 461            74         Upright             78           no         317786
## 462            13         Spilled             29           no          15001
## 463            66         Upright             55           no          91267
## 464            51         Upright             76           no           3454
## 465            67         Spilled             56           no          27694
## 466            75         Upright             70           no         520411
## 467            77         Spilled             76           no         412729
## 468            71         Upright             70           no           1439
## 469            81         Upright             81          yes          28631
## 470            65         Spilled             55          yes          28129
## 471            73         Upright             73           no         212186
## 472            71         Spilled             58           no          12993
## 473            88         Upright             69          yes          32563
## 474            63         Spilled             53           no           3734
## 475            67         Upright             70           no          18216
## 476            77         Spilled             76           no            814
## 477            78         Spilled             77           no           1919
## 478            79         Spilled             78           no         110731
## 479            80         Spilled             79           no          25942
## 480            71         Spilled             69           no          33160
## 481            61         Spilled             69           no          48184
## 482            59         Upright             74           no           2762
## 483             9         Spilled             49           no         327114
## 484            71         Upright             61           no          22590
## 485            86         Upright             71           no           2776
## 486            78         Upright             64           no          20495
## 487            71         Upright             61           no          18132
## 488            92         Upright             88           no          51825
## 489            71         Upright             86           no          25126
## 490            25         Spilled             59           no            971
## 491            51         Spilled             55           no          14552
## 492            60         Spilled             50           no            619
## 493            37         Upright             62           no          43887
## 494            71         Upright             61           no           4346
## 495            80         Spilled             49           no           3903
## 496            93         Upright             85           no          16922
## 497            57         Spilled             56           no              2
## 498            50         Spilled             38           no            683
## 499            67         Spilled             55           no            152
## 500            53         Spilled             64           no           8355
## 501            76         Spilled             42           no           2829
## 502            63         Spilled             68           no            370
## 503            50         Upright             81           no          52827
## 504            37         Spilled             32           no          36458
## 505            81         Upright             84           no           9125
## 506            33         Upright             32           no            848
## 507            90         Upright             79           no           5178
## 508            33         Upright             32           no          56925
## 509            35         Upright             77           no           2682
## 510            40         Spilled             49           no          35296
## 511            13         Spilled             36           no          40230
## 512            67         Spilled             46           no          29991
## 513            68         Spilled             71           no           4394
## 514            63         Upright             73           no         344782
## 515            72         Spilled             59           no           4714
## 516            67         Spilled             49           no          28050
## 517            66         Upright             65           no          96785
## 518            52         Spilled             56           no          22722
## 519            60         Upright             76           no          29069
## 520            33         Upright             32           no           6479
## 521            33         Spilled             19           no          21397
## 522            60         Upright             73           no          79152
## 523            54         Upright             60           no            662
## 524            33         Upright             32           no          31815
## 525            35         Spilled             31           no          12952
## 526            81         Upright             72           no          91673
## 527            65         Upright             68           no           1970
## 528            63         Spilled             77           no           5637
## 529            34         Upright             33           no          13312
## 530            35         Upright             34           no          68497
## 531            56         Upright             81           no           2958
## 532            98         Upright             85           no          81990
## 533            66         Upright             60           no          27405
## 534            51         Upright             81           no          45223
## 535            78         Upright             71           no          23603
## 536            83         Upright             75           no           1815
## 537            37         Upright             36           no          12856
## 538            70         Spilled             74           no          48878
## 539            69         Upright             74           no          26239
## 540            40         Upright             39           no           2529
## 541            41         Upright             40           no          16580
## 542            74         Upright             65           no          25206
## 543            54         Spilled             54           no          95735
## 544            75         Spilled             85           no          20965
## 545            27         Spilled             15           no          37299
## 546            84         Upright             79           no          13934
## 547            81         Spilled             80          yes           2864
## 548            76         Upright             80           no          12452
## 549            92         Upright             77           no          16691
## 550            68         Upright             74           no           1195
## 551            21         Upright             20           no          15857
## 552            14         Spilled             44           no          44028
## 553            64         Upright             65           no          34582
## 554            74         Upright             74           no          20056
## 555            85         Upright             87           no           5046
## 556            22         Spilled             22           no          14397
## 557            59         Upright             82           no          11458
## 558            68         Upright             60           no          13616
## 559            93         Upright             87           no          14196
## 560            19         Spilled             32           no          15269
## 561            28         Spilled             44           no           1044
## 562            75         Upright             75           no         221753
## 563            72         Upright             69           no          13827
## 564            80         Upright             79           no         111154
## 565            25         Spilled             39           no          45187
## 566            21         Upright             20           no          12410
## 567            64         Upright             80           no         222697
## 568           100         Upright             68           no          81976
## 569           100         Upright             85           no         117883
## 570            28         Upright             61           no         319454
## 571            88         Upright             74           no         321302
## 572            93         Upright             93           no         316828
## 573            89         Upright             86           no         125217
## 574            88         Upright             68           no          37273
## 575            57         Spilled             59           no         450005
## 576            75         Spilled             34           no           1675
## 577            77         Upright             81           no          51148
## 578            88         Upright             94          yes         227468
## 579            95         Upright             89           no          82790
## 580            84         Upright             85           no         312731
## 581            55         Upright             65           no         228350
## 582            21         Upright             20           no          23667
## 583            83         Spilled             79           no         436741
## 584            71         Upright             77           no         127842
## 585           100         Upright             94           no         516595
## 586            82         Spilled             54           no          14486
## 587            57         Upright             76           no         216055
## 588            92         Upright             87          yes         555609
## 589            65         Upright             73           no         164834
## 590            72         Upright             87           no         335227
## 591            67         Upright             71           no         345227
## 592            92         Upright             88           no           6181
## 593             6         Spilled             76           no          31782
## 594            89         Upright             70           no         126207
## 595            95         Upright             92           no           4001
## 596            59         Upright             70           no          16138
## 597            53         Spilled             38           no           1439
## 598            59         Spilled             74           no         246726
## 599            56         Upright             80           no         127674
## 600            63         Upright             71           no         222121
## 601            69         Spilled             78           no         334455
## 602            66         Spilled             42           no         133244
## 603            85         Upright             79          yes         451430
## 604            93         Upright             91           no          16034
## 605            61         Upright             92           no         187697
## 606            60         Upright             61           no         215013
## 607            69         Spilled             78           no         322542
## 608            88         Upright             89           no         213517
## 609            92         Upright             79           no         212954
## 610            88         Upright             89           no           5861
## 611            64         Upright             80           no         129152
## 612            91         Upright             86           no         222036
## 613            83         Upright             75           no         216008
## 614            25         Upright             65           no           2763
## 615            63         Spilled             53           no           1846
## 616            63         Upright             74           no          83628
## 617            91         Upright             86           no         112572
## 618            64         Spilled             54           no           6946
## 619            69         Spilled             78           no         312831
## 620            17         Spilled             35           no          17871
## 621            67         Upright             70           no         101899
## 622            11         Spilled             48           no          15708
## 623            38         Spilled             18           no         121520
## 624            69         Spilled             78           no         233455
## 625            26         Spilled             22           no         122547
## 626            69         Spilled             78           no         237159
## 627            69         Spilled             78           no         452614
## 628            51         Upright             78           no         323755
## 629            73         Upright             73           no         414261
## 630            71         Spilled             79           no         331031
## 631            45         Spilled             44           no         103986
## 632            87         Spilled             77           no          17369
## 633            77         Spilled             78           no           5730
## 634            27         Upright             45           no           3524
## 635            95         Upright             81           no          59824
## 636            83         Upright             66           no         158753
## 637            77         Upright             73           no         211234
## 638            77         Spilled             78           no         312758
## 639            82         Upright             75           no         418003
## 640            80         Upright             76           no         166759
## 641            29         Upright             81           no           4625
## 642            80         Spilled             52           no          24998
## 643            22         Spilled             32           no           7081
## 644            27         Spilled             22           no           5838
##         budget     revenue language     country      profit
## 1     1.000000    0.009318  English         USA   -0.990682
## 2     2.000000    0.045431  English          UK   -1.954569
## 3   110.000000  295.238201  English          UK  185.238201
## 4     2.900000    0.296557  English         USA   -2.603443
## 5   190.000000 1506.249360   French      France 1316.249360
## 6   135.000000  532.950503  English         USA  397.950503
## 7     1.000000    0.395000  English         USA   -0.605000
## 8     2.000000    0.572809  English         USA   -1.427191
## 9    74.000000 1156.730962  English         USA 1082.730962
## 10    2.000000    1.048390  English         USA   -0.951610
## 11  245.000000  880.674609  English         USA  635.674609
## 12    3.150000    1.088273  English         USA   -2.061727
## 13   15.000000   36.869414  English          UK   21.869414
## 14   88.000000  243.637091  English         USA  155.637091
## 15  280.000000 1405.035767  English         USA 1125.035767
## 16    4.000000    1.600896  English         USA   -2.399104
## 17    0.600000    1.826705  English         USA    1.226705
## 18    5.000000    2.367161  English         USA   -2.632839
## 19   95.000000  542.351353  English         USA  447.351353
## 20    6.700000    2.430655  English         USA   -4.269345
## 21    5.000000    2.450846  English         USA   -2.549154
## 22   30.000000   91.709827  English         USA   61.709827
## 23    3.000000    3.387000  English         USA    0.387000
## 24    8.000000    3.453043  English         USA   -4.546957
## 25   28.000000  133.346506  English         USA  105.346506
## 26  150.000000  682.330139  English New Zealand  532.330139
## 27   47.000000    3.547209  English      Canada  -43.452791
## 28   81.000000  403.802136  English         USA  322.802136
## 29   20.000000   88.346473  English         USA   68.346473
## 30   61.000000  311.256926  English         USA  250.256926
## 31   49.000000  102.069268  English          UK   53.069268
## 32   29.000000  287.506194  English         USA  258.506194
## 33   40.000000  162.610473  English         USA  122.610473
## 34   58.000000  150.170815  English         USA   92.170815
## 35    6.000000   35.401758  English      Canada   29.401758
## 36  175.000000  331.926147  English         USA  156.926147
## 37    8.000000    3.759286  English   Australia   -4.240714
## 38   20.000000    3.759286  English   Australia  -16.240714
## 39   28.000000  201.634991  English   Australia  173.634991
## 40    9.000000    3.985117  English      France   -5.014883
## 41    6.000000    4.015071  English   Australia   -1.984929
## 42    4.000000    4.100000  English   Australia    0.100000
## 43    7.000000    4.143101  English   Australia   -2.856899
## 44   10.000000   14.333790  English   Australia    4.333790
## 45   34.000000    4.217115  English   Australia  -29.782885
## 46   12.000000   85.512300  English   Australia   73.512300
## 47    2.000000    4.635300  English   Australia    2.635300
## 48    5.000000    4.842699  English   Australia   -0.157301
## 49    5.500000    5.000000  English   Australia   -0.500000
## 50   10.000000    5.017472  English   Australia   -4.982528
## 51   55.000000   57.791867  English   Australia    2.791867
## 52    7.000000    5.350000  English          UK   -1.650000
## 53  105.000000   45.465299  English   Australia  -59.534701
## 54   10.000000    6.334927  English   Australia   -3.665073
## 55   12.500000    6.732980  English   Australia   -5.767020
## 56   12.000000    6.814789  English   Australia   -5.185211
## 57    5.000000    6.833445  English   Australia    1.833445
## 58   28.000000    7.002261  English   Australia  -20.997739
## 59   30.000000   12.206028  English         USA  -17.793972
## 60  120.000000   10.652035  English         USA -109.347965
## 61    3.500000    0.754249  English         USA   -2.745751
## 62   11.000000    7.002261  English         USA   -3.997739
## 63   50.100000  153.962963  English         USA  103.862963
## 64   35.000000   82.347656  English         USA   47.347656
## 65  100.000000   93.820758  English         USA   -6.179242
## 66   20.000000   29.536299  English         USA    9.536299
## 67   35.000000  137.935567  English         USA  102.935567
## 68   35.000000  140.795793  English      Canada  105.795793
## 69   10.000000    7.498974  English      Canada   -2.501026
## 70   60.000000    7.587485  English      Canada  -52.412515
## 71    2.000000    7.644937  English      Canada    5.644937
## 72   99.000000  246.233113  English      Canada  147.233113
## 73   35.000000   48.623572  English      Canada   13.623572
## 74   25.000000   52.395996  English      Canada   27.395996
## 75    2.500000    5.214043  English      Canada    2.714043
## 76   11.000000    7.863315  English          UK   -3.136685
## 77   80.000000  466.183544  English      Canada  386.183544
## 78   15.000000    8.235661  English      Canada   -6.764339
## 79   35.000000   61.181942  English      Canada   26.181942
## 80   10.000000    8.333684  English      Canada   -1.666316
## 81   15.000000    9.104716  English      Canada   -5.895284
## 82   35.000000   95.437994  English      Canada   60.437994
## 83    4.000000    0.187112  English      Canada   -3.812888
## 84   50.000000   48.324330  English      Canada   -1.675670
## 85    5.000000    9.760104  English   Australia    4.760104
## 86    5.000000   10.429707  English          UK    5.429707
## 87   47.000000   10.539000  English         USA  -36.461000
## 88   25.000000   10.589102  English         USA  -14.410898
## 89   13.000000   10.754249  English         USA   -2.245751
## 90    8.500000   43.528634  English         USA   35.028634
## 91   11.000000   10.791867  English         USA   -0.208133
## 92   30.000000  107.597242  English         USA   77.597242
## 93    4.000000   50.163103  English         USA   46.163103
## 94   30.000000   49.263404  English         USA   19.263404
## 95   23.000000   10.827816  English         USA  -12.172184
## 96   10.000000   10.835752  English         USA    0.835752
## 97    2.240000   10.835752  English          UK    8.595752
## 98   53.000000   99.775678  English         USA   46.775678
## 99    8.900000    4.160000 Japanese       Japan   -4.740000
## 100  15.000000   61.548707  English         USA   46.548707
## 101  14.000000   10.875386  English         USA   -3.124614
## 102  20.000000   11.110975  English         USA   -8.889025
## 103  10.000000   11.644755  English         USA    1.644755
## 104  11.000000   61.619773  English         USA   50.619773
## 105  14.000000   11.755212  English         USA   -2.244788
## 106  24.000000   12.096300  English         USA  -11.903700
## 107  40.000000   12.206028  English         USA  -27.793972
## 108  55.000000   74.679822  English         USA   19.679822
## 109  14.800000  122.413057  English         USA  107.613057
## 110  10.000000   78.099553  English         USA   68.099553
## 111  14.000000   12.314651  English         USA   -1.685349
## 112   1.000000   12.355734  English         USA   11.355734
## 113  74.000000  311.594032  English     Germany  237.594032
## 114  20.000000   43.967255  English          UK   23.967255
## 115  15.000000   13.020664  English         USA   -1.979336
## 116  40.000000   10.664749  English         USA  -29.335251
## 117   1.000000   62.882090  English         USA   61.882090
## 118  35.000000   51.680201  English         USA   16.680201
## 119  10.000000  104.303851  English         USA   94.303851
## 120  15.000000   13.995811  English         USA   -1.004189
## 121  35.000000   14.431253  English         USA  -20.568747
## 122  15.000000   14.860766  English         USA   -0.139234
## 123   1.800000   34.227298  English         USA   32.427298
## 124   7.500000   14.899417  English         USA    7.399417
## 125   2.000000    1.477002  English         USA   -0.522998
## 126  12.000000    1.477002  English         USA  -10.522998
## 127  11.000000   27.391084  English         USA   16.391084
## 128  20.000000   15.017401  English     Germany   -4.982599
## 129  22.500000   15.520023  English         USA   -6.979977
## 130   0.630000    1.100000  English         USA    0.470000
## 131  11.000000   16.000000  English         USA    5.000000
## 132  10.000000    7.587485  English         USA   -2.412515
## 133  40.000000  106.511453  English         USA   66.511453
## 134  35.000000   17.508518  English         USA  -17.491482
## 135  21.000000   17.762705  English         USA   -3.237295
## 136  14.000000   16.002420  English         USA    2.002420
## 137   0.700000   17.986781  English         USA   17.286781
## 138  10.000000   85.978266  English         USA   75.978266
## 139  20.000000    6.420319  English         USA  -13.579681
## 140  37.000000   26.250020  English         USA  -10.749980
## 141  20.000000   18.220000  English         USA   -1.780000
## 142  11.930000   18.340000  English         USA    6.410000
## 143   3.000000   18.492362  English         USA   15.492362
## 144   7.000000   18.658381  English         USA   11.658381
## 145   9.600000    8.541554  English         USA   -1.058446
## 146  12.600000   18.658381     <NA>        <NA>    6.058381
## 147   1.987650   19.152480  English         USA   17.164830
## 148  15.000000   20.117339  English         USA    5.117339
## 149   1.000000   14.444999  English         USA   13.444999
## 150  13.000000   11.784763  English         USA   -1.215237
## 151   8.000000    6.411927  English         USA   -1.588073
## 152   1.500000   20.455276  English         USA   18.955276
## 153   4.000000    0.143101  English         USA   -3.856899
## 154   8.000000   35.991087  English         USA   27.991087
## 155  33.000000   20.645327  English     Germany  -12.354673
## 156   8.000000   64.110728  English         USA   56.110728
## 157  22.000000   20.851517  English         USA   -1.148483
## 158  20.000000   21.571189  English         USA    1.571189
## 159   9.000000   21.571189  English         USA   12.571189
## 160  70.000000   22.852638  English         USA  -47.147362
## 161   3.000000   64.110728  English         USA   61.110728
## 162  14.000000   22.852638  English         USA    8.852638
## 163  20.000000   22.942221  English         USA    2.942221
## 164  21.000000   21.571189  English         USA    0.571189
## 165  10.000000   22.942221  English         USA   12.942221
## 166   5.300000   21.571189  English         USA   16.271189
## 167  17.000000   24.000000  English         USA    7.000000
## 168  13.000000   15.646788  English          UK    2.646788
## 169   5.000000    2.333684  English         USA   -2.666316
## 170  20.000000   24.145613  English         USA    4.145613
## 171   6.000000    2.090777  English          UK   -3.909223
## 172  25.000000   24.902723  English       China   -0.097277
## 173   1.000000    3.387000  English         USA    2.387000
## 174   0.447524    0.771317  English   Australia    0.323793
## 175   8.000000   26.049082  English         USA   18.049082
## 176  26.000000   26.250020  English         USA    0.250020
## 177  15.000000   27.391084  English   Australia   12.391084
## 178   6.000000   97.382599  English         USA   91.382599
## 179  60.000000   27.409889  English         USA  -32.590111
## 180  35.000000   27.409889  English         USA   -7.590111
## 181   2.000000    2.801508  English         USA    0.801508
## 182  72.000000   27.642707  English         USA  -44.357293
## 183  40.000000   28.169671  English         USA  -11.830329
## 184  28.000000   28.208085  English         USA    0.208085
## 185   0.700000  623.933331  English         USA  623.233331
## 186   6.500000   28.451622  English         USA   21.951622
## 187  30.000000   29.000000  English         USA   -1.000000
## 188  20.000000   29.536299  English         USA    9.536299
## 189  17.000000   29.536299  English         USA   12.536299
## 190  19.000000   29.922472  English          UK   10.922472
## 191  60.000000   30.800231  English         USA  -29.199769
## 192  15.000000   31.430334  English         USA   16.430334
## 193   7.000000   31.430334  English         USA   24.430334
## 194   2.500000   91.379051  English   Australia   88.879051
## 195   9.500000  293.329073  English         USA  283.829073
## 196   0.650000   31.720158  English          UK   31.070158
## 197   3.400000   74.952305  English          UK   71.552305
## 198   3.000000   67.790117  English         USA   64.790117
## 199   1.000000   71.664962  English         USA   70.664962
## 200   1.300000   31.327899  English          UK   30.027899
## 201   3.000000  271.430189  English         USA  268.430189
## 202  19.500000   32.189727  English         USA   12.689727
## 203  12.000000   32.248241  English         USA   20.248241
## 204   1.000000   18.409891  English          UK   17.409891
## 205  15.000000   32.556119  English         USA   17.556119
## 206  13.000000   32.848185  English         USA   19.848185
## 207  30.000000   33.333531  English         USA    3.333531
## 208 170.000000  714.766572  English      Canada  544.766572
## 209  20.000000   78.739897  English         USA   58.739897
## 210 125.000000  752.100229  English         USA  627.100229
## 211  22.000000   33.788161  English         USA   11.788161
## 212 165.000000  652.105443  English         USA  487.105443
## 213  20.000000   34.077920  English         USA   14.077920
## 214  34.000000  348.319861  English         USA  314.319861
## 215  40.000000   34.227298  English         USA   -5.772702
## 216  61.000000  369.330363  English         USA  308.330363
## 217  68.000000  211.817906  English         USA  143.817906
## 218 127.000000  349.424282  English         USA  222.424282
## 219  85.000000  288.747895  English         USA  203.747895
## 220 250.000000  746.000000  English         USA  496.000000
## 221  30.000000   34.441873  English         USA    4.441873
## 222 125.000000  477.200000  English         USA  352.200000
## 223  22.000000   35.424826  English         USA   13.424826
## 224   3.000000   35.692920  English         USA   32.692920
## 225 210.000000  245.500000  English         USA   35.500000
## 226  12.000000   35.991087  English         USA   23.991087
## 227   3.300000    3.993093  English         USA    0.693093
## 228  60.000000   36.133014  English         USA  -23.866986
## 229  55.000000  192.330738  English         USA  137.330738
## 230  42.000000  106.645357  English         USA   64.645357
## 231   4.000000   36.348784  English         USA   32.348784
## 232   8.500000   38.697217  English         USA   30.197217
## 233  44.000000   11.305175  English         USA  -32.694825
## 234  70.000000   39.041505  English         USA  -30.958495
## 235 140.000000  268.031828  English         USA  128.031828
## 236  15.000000   40.105542  English         USA   25.105542
## 237  10.000000   40.270895  English         USA   30.270895
## 238  50.000000   40.828540  English          UK   -9.171460
## 239   5.000000  102.529779  English         USA   97.529779
## 240 145.000000  609.123048   French      France  464.123048
## 241   2.000000   13.500000  English         USA   11.500000
## 242  90.000000  206.172544  English         USA  116.172544
## 243   5.000000   40.846082  English          UK   35.846082
## 244  13.000000  469.160692  English          UK  456.160692
## 245  18.000000   41.325328  English         USA   23.325328
## 246  15.000000  121.201940  English         USA  106.201940
## 247  17.000000  136.621271  English         USA  119.621271
## 248  70.000000  215.529201  English         USA  145.529201
## 249 132.000000  373.552094  English         USA  241.552094
## 250   6.000000   41.387687  English         USA   35.387687
## 251  32.000000   42.045846  English         USA   10.045846
## 252  25.000000   42.629776  English         USA   17.629776
## 253  25.000000   42.972994  English         USA   17.972994
## 254  11.000000   43.967255  English          UK   32.967255
## 255   7.000000    3.360281  English         USA   -3.639719
## 256  11.000000   45.967935  English         USA   34.967935
## 257   9.000000  108.782847  English         USA   99.782847
## 258  16.000000   19.682924  English         USA    3.682924
## 259   4.000000   44.349000  English         USA   40.349000
## 260  20.000000   12.007070  English         USA   -7.992930
## 261  40.000000   46.471023  English         USA    6.471023
## 262 125.000000  362.637473  English         USA  237.637473
## 263  82.000000   47.434430  English         USA  -34.565570
## 264  44.000000   48.190704  English         USA    4.190704
## 265  40.000000  123.494610  English         USA   83.494610
## 266  18.000000  268.157400  English         USA  250.157400
## 267  30.000000   48.428063  English         USA   18.428063
## 268  45.000000   86.165646  English         USA   41.165646
## 269  37.000000   48.451803  English         USA   11.451803
## 270  19.000000   49.830607  English         USA   30.830607
## 271  30.000000   51.148651  English         USA   21.148651
## 272  60.000000   50.549107  English         USA   -9.450893
## 273  50.000000  222.809600  English     Germany  172.809600
## 274   5.500000    3.000000  English         USA   -2.500000
## 275  11.800000   51.416464  English         USA   39.616464
## 276  17.000000   52.501541  English         USA   35.501541
## 277 120.000000  239.379423  English         USA  119.379423
## 278 100.000000  103.039258  English    New Line    3.039258
## 279  15.000000   52.501541  English         USA   37.501541
## 280 145.000000  272.912430  English         USA  127.912430
## 281  65.000000   39.407616  English         USA  -25.592384
## 282 103.000000  500.188435  English          UK  397.188435
## 283  10.000000   52.882018  English         USA   42.882018
## 284  28.000000   53.181600  English         USA   25.181600
## 285  16.000000   53.478166  English         USA   37.478166
## 286  20.000000   66.787908  English         USA   46.787908
## 287   4.900000    3.494070  English         USA   -1.405930
## 288  13.200000   53.830415  English         USA   40.630415
## 289   5.000000   54.418872  English         USA   49.418872
## 290  13.000000   54.837234  English         USA   41.837234
## 291  26.000000   35.926213  English         USA    9.926213
## 292   5.000000   58.978653  English     Belgium   53.978653
## 293  50.000000   97.437106  English         USA   47.437106
## 294  10.000000   59.217789  English         USA   49.217789
## 295  66.000000  203.277636  English         USA  137.277636
## 296  50.000000   60.161391  English         USA   10.161391
## 297  60.000000  108.255770  English         USA   48.255770
## 298  10.000000   28.883511  English         USA   18.883511
## 299  18.000000  266.586800  English     Germany  248.586800
## 300  45.000000   60.222298  English         USA   15.222298
## 301  12.000000   60.273173  English         USA   48.273173
## 302  25.000000  160.602194  English         USA  135.602194
## 303  28.000000   60.780981  English         USA   32.780981
## 304   5.000000   61.279452  English         USA   56.279452
## 305  75.000000   61.458982  English         USA  -13.541018
## 306   1.000000   17.508518  English         USA   16.508518
## 307  11.000000   62.076141  English         USA   51.076141
## 308   5.000000   41.797583  English     Germany   36.797583
## 309   5.000000   40.100000  English         USA   35.100000
## 310  34.000000   63.013281  English         USA   29.013281
## 311   3.300000   64.110728  English         USA   60.810728
## 312  12.250000   11.295423  English         USA   -0.954577
## 313  24.000000   70.181428  English         USA   46.181428
## 314   1.950000   64.110728  English         USA   62.160728
## 315  15.000000   10.059209  English         USA   -4.940791
## 316  16.000000   66.468332  English         USA   50.468332
## 317  65.000000   71.154592  English         USA    6.154592
## 318  25.000000   66.980456  English         USA   41.980456
## 319  27.000000   28.831145  English      France    1.831145
## 320  28.000000   68.896829  English         USA   40.896829
## 321   2.000000    6.676471  English         USA    4.676471
## 322  40.000000   67.347013  English         USA   27.347013
## 323  10.000000  100.525432  English         USA   90.525432
## 324  22.000000   67.800064  English         USA   45.800064
## 325  26.000000   68.233629  English         USA   42.233629
## 326  32.000000   69.055695  English         USA   37.055695
## 327  50.000000   71.561644  English         USA   21.561644
## 328  25.000000   72.629670  English         USA   47.629670
## 329  28.000000  100.654149  English      France   72.654149
## 330  19.800000   41.296320  English         USA   21.496320
## 331  16.000000   12.429989  English         USA   -3.570011
## 332   9.000000    7.500000  English         USA   -1.500000
## 333   8.500000    7.500000  English         USA   -1.000000
## 334  64.000000   74.608570  English         USA   10.608570
## 335  12.500000   49.002684  English         USA   36.502684
## 336  25.000000   38.307627  English         USA   13.307627
## 337   5.500000    5.483299  English         USA   -0.016701
## 338  16.000000   76.514050  English         USA   60.514050
## 339  13.300000    5.380251  English         USA   -7.919749
## 340   6.000000    3.485127  English          UK   -2.514873
## 341  28.000000   77.516304  English          UK   49.516304
## 342   3.500000    5.155325  English         USA    1.655325
## 343   8.500000    5.770706  English         USA   -2.729294
## 344  15.000000   30.127963  English         USA   15.127963
## 345  30.000000   30.127963  English         USA    0.127963
## 346  11.000000   78.874843  English New Zealand   67.874843
## 347   1.000000   48.190704  English          UK   47.190704
## 348   5.500000   49.830607  English         USA   44.330607
## 349  23.000000   79.799880  English         USA   56.799880
## 350  21.000000  216.485654  English         USA  195.485654
## 351  15.000000   31.554855  English         USA   16.554855
## 352   6.500000   13.865435  English         USA    7.365435
## 353  30.000000   13.865435  English         USA  -16.134565
## 354   6.600000    1.554000  English         USA   -5.046000
## 355  25.000000   80.936232  English         USA   55.936232
## 356   5.000000   33.333454  English         USA   28.333454
## 357  53.000000   83.282296  English         USA   30.282296
## 358  50.000000   83.719388  English         USA   33.719388
## 359  36.000000   52.424533  English         USA   16.424533
## 360   1.000000   26.501323  English         USA   25.501323
## 361  50.000000   80.383113  English         USA   30.383113
## 362  20.000000   80.383113  English         USA   60.383113
## 363   2.800000    1.826705  English         USA   -0.973295
## 364  12.000000   83.719388  English         USA   71.719388
## 365   6.000000    3.020921  English         USA   -2.979079
## 366  25.000000   84.565230  English         USA   59.565230
## 367  48.000000   85.498534  English       Spain   37.498534
## 368  10.000000   61.279452  English         USA   51.279452
## 369  70.000000   61.279452  English         USA   -8.720548
## 370   5.000000   61.279452  English         USA   56.279452
## 371  30.000000   25.312387  English         USA   -4.687613
## 372  18.000000   25.312387  English         USA    7.312387
## 373   2.400000    1.088273  English          UK   -1.311727
## 374  69.000000   86.387857  English         USA   17.387857
## 375  60.000000   87.784194  English         USA   27.784194
## 376   2.700000   32.005248  English         USA   29.305248
## 377  22.000000   88.880821  English         USA   66.880821
## 378   8.000000   64.572262  English     Germany   56.572262
## 379   6.000000    1.032251  English         USA   -4.967749
## 380  45.000000   90.683916  English         USA   45.683916
## 381   0.318000    0.121179  English         USA   -0.196821
## 382  30.000000   23.445444  English         USA   -6.554556
## 383   7.000000   14.618727  English         USA    7.618727
## 384   1.200000   93.246388  English         USA   92.046388
## 385  65.000000   93.525586  English         USA   28.525586
## 386  35.000000   94.728529  English         USA   59.728529
## 387  40.000000  136.000000  English         USA   96.000000
## 388 100.000000   94.882889  English         USA   -5.117111
## 389   1.500000   95.714875  English         USA   94.214875
## 390  70.000000   96.976270  English         USA   26.976270
## 391   6.000000   97.382599  English         USA   91.382599
## 392   1.000000   97.382599  English         USA   96.382599
## 393   4.400000   97.382599  English         USA   92.982599
## 394  10.000000   11.995811  English         USA    1.995811
## 395  64.000000   97.571250  English         USA   33.571250
## 396  25.000000   36.993168  English         USA   11.993168
## 397   5.000000   98.450062  English         USA   93.450062
## 398  40.000000  357.852395  English         USA  317.852395
## 399  20.000000  100.525432  English         USA   80.525432
## 400   3.000000  100.525432 Mandarin       China   97.525432
## 401  52.000000   52.615806  English         USA    0.615806
## 402  87.000000  100.734718  English         USA   13.734718
## 403   8.000000    6.491240  English         USA   -1.508760
## 404  35.000000  101.229792  English         USA   66.229792
## 405  35.000000  115.664037  English         USA   80.664037
## 406  25.000000   23.580000  English         USA   -1.420000
## 407  25.000000    9.190869  English         USA  -15.809131
## 408  40.000000   90.029656  English         USA   50.029656
## 409  12.000000  101.332962  English         USA   89.332962
## 410  20.000000   80.547866  English         USA   60.547866
## 411   2.000000    7.871522  English         USA    5.871522
## 412  75.000000   98.159963  English         USA   23.159963
## 413  26.000000   67.918658  English         USA   41.918658
## 414 100.000000  288.347692  English         USA  188.347692
## 415  20.000000   32.005248  English          UK   12.005248
## 416  35.000000   93.246388  English         USA   58.246388
## 417  36.000000   64.572262  English         USA   28.572262
## 418  21.800000   64.572262  English         USA   42.772262
## 419  23.600000  102.391382  English         USA   78.791382
## 420  18.000000  103.215094  English         USA   85.215094
## 421  31.000000  104.384188  English         USA   73.384188
## 422  45.000000  104.876233  English         USA   59.876233
## 423  55.000000   89.519773  English         USA   34.519773
## 424  15.000000    4.882577  English          UK  -10.117423
## 425  30.000000  105.011053  English         USA   75.011053
## 426  24.000000   23.081726  English         USA   -0.918274
## 427  38.000000  105.610124  English         USA   67.610124
## 428  60.000000  105.178561  English         USA   45.178561
## 429   3.200000    5.332926  English         USA    2.132926
## 430  50.000000  106.303988  English         USA   56.303988
## 431  22.000000    9.479718  English         USA  -12.520282
## 432  15.000000   75.700498  English         USA   60.700498
## 433  75.000000  108.145109  English         USA   33.145109
## 434  24.000000   83.188165  English         USA   59.188165
## 435  40.000000   58.785180  English         USA   18.785180
## 436  48.000000  112.462508  English         USA   64.462508
## 437  90.000000   16.178959  English         USA  -73.821041
## 438   1.800000   67.738090  English         USA   65.938090
## 439  95.000000  114.178613  English         USA   19.178613
## 440  22.000000   24.188922  English         USA    2.188922
## 441  30.000000  114.663461  English         USA   84.663461
## 442 130.000000  117.831631  English         USA  -12.168369
## 443  48.000000  124.305181  English         USA   76.305181
## 444  14.000000   30.749142  English         USA   16.749142
## 445   6.000000   30.000000  English         USA   24.000000
## 446   3.000000   30.000000  English         USA   27.000000
## 447   6.000000   14.717854  English         USA    8.717854
## 448  22.000000   12.000000  English         USA  -10.000000
## 449   0.810000    1.258000  English     Germany    0.448000
## 450  80.000000  415.885488  English         USA  335.885488
## 451  60.000000  284.600000  English         USA  224.600000
## 452  60.000000  124.596398  English         USA   64.596398
## 453  40.000000  126.069509  English          UK   86.069509
## 454  10.500000   75.902208  English         USA   65.402208
## 455 100.000000  206.071502  English         USA  106.071502
## 456  11.000000  235.483004  English         USA  224.483004
## 457 150.000000  128.388320  English         USA  -21.611680
## 458  90.000000  485.015179  English         USA  395.015179
## 459  40.000000  129.540499  English     Germany   89.540499
## 460   5.000000  130.654470  English          UK  125.654470
## 461  33.000000  310.940086  English         USA  277.940086
## 462   2.000000   11.540607  English         USA    9.540607
## 463  90.000000   60.289912  English         USA  -29.710088
## 464  65.000000  133.821816  English         USA   68.821816
## 465  20.000000  136.150434  English     Germany  116.150434
## 466  90.000000  886.686817  English         USA  796.686817
## 467  35.000000  459.270619  English         USA  424.270619
## 468  80.000000  140.073390  English         USA   60.073390
## 469  90.000000  140.396650  English         USA   50.396650
## 470  40.000000  141.069860  English         USA  101.069860
## 471 150.000000  356.613439  English         USA  206.613439
## 472  45.000000  141.220678  English         USA   96.220678
## 473  18.000000  141.774679  English         USA  123.774679
## 474  92.000000  143.049560  English         USA   51.049560
## 475  57.000000  147.845033  English         USA   90.845033
## 476  40.000000  177.259441  English         USA  137.259441
## 477 175.000000  302.469017  English         USA  127.469017
## 478  40.000000  317.375031  English         USA  277.375031
## 479  38.000000  205.298907  English         USA  167.298907
## 480  50.000000  151.165787  English     Germany  101.165787
## 481  13.500000  152.263880  English         USA  138.763880
## 482  25.000000  153.997819  English         USA  128.997819
## 483 150.000000  413.106170  English         USA  263.106170
## 484  20.000000  136.267476  English         USA  116.267476
## 485  70.000000  154.984035  English         USA   84.984035
## 486  44.000000  155.760117  English         USA  111.760117
## 487  26.000000  183.293131  English         USA  157.293131
## 488  16.000000   47.801389  English         USA   31.801389
## 489  53.000000  126.690726  English         USA   73.690726
## 490  20.000000   34.560577  English         USA   14.560577
## 491  50.000000  160.602194  English         USA  110.602194
## 492  30.000000   90.842646  English         USA   60.842646
## 493  26.000000   90.842646  English         USA   64.842646
## 494  50.000000  155.446362  English         USA  105.446362
## 495  28.000000  160.602194  English         USA  132.602194
## 496 150.000000  292.817841  English         USA  142.817841
## 497 100.000000  150.166126  English         USA   50.166126
## 498  18.500000   31.912793  English      France   13.412793
## 499  40.000000  108.332743   French      France   68.332743
## 500  65.000000  162.091208  English         USA   97.091208
## 501  65.000000  163.442937  English         USA   98.442937
## 502  70.000000  171.844840  Spanish      Mexico  101.844840
## 503  26.000000   43.318349  English         USA   17.318349
## 504  32.000000   27.635305  English         USA   -4.364695
## 505  40.000000  169.837010  English          UK  129.837010
## 506   3.000000    2.357852  English         USA   -0.642148
## 507  92.000000  172.989651  English         USA   80.989651
## 508  15.000000    8.459458  English         USA   -6.540542
## 509  30.000000  174.600318  English         USA  144.600318
## 510  16.000000   31.556061  English         USA   15.556061
## 511  20.000000   41.596251  English      France   21.596251
## 512 176.000000  183.987723  English         USA    7.987723
## 513 130.000000  185.258983  English         USA   55.258983
## 514  75.000000  443.140005  English       Japan  368.140005
## 515   4.500000    3.606395  English         USA   -0.893605
## 516  40.000000  186.167139  English         USA  146.167139
## 517  10.000000   63.647833  English         USA   53.647833
## 518  50.000000  188.441614  English         USA  138.441614
## 519  40.000000  196.781193  English         USA  156.781193
## 520  14.700000    8.049666  English         USA   -6.650334
## 521  41.000000   91.636986  English         USA   50.636986
## 522 190.000000  209.035668  English New Zealand   19.035668
## 523  65.000000  211.780824  English         USA  146.780824
## 524  27.000000   29.000000  English         USA    2.000000
## 525  50.000000   36.348784  English         USA  -13.651216
## 526  20.000000   51.416464  English         USA   31.416464
## 527  39.000000  101.229792  English         USA   62.229792
## 528  66.000000  212.404396  English         USA  146.404396
## 529  18.000000   36.133014  English         USA   18.133014
## 530  38.000000   45.465299  English         USA    7.465299
## 531  50.000000  212.902372  English          UK  162.902372
## 532  11.000000   68.233629  English         USA   57.233629
## 533  80.000000  214.104620  English         USA  134.104620
## 534  68.000000  215.863606  English         USA  147.863606
## 535  52.000000  216.485654  English         USA  164.485654
## 536  14.000000  233.555708  English         USA  219.555708
## 537  13.000000   10.652035  English         USA   -2.347965
## 538  65.000000  235.666219  English         USA  170.666219
## 539 112.000000  237.382724  English         USA  125.382724
## 540  51.000000   36.911617  English      France  -14.088383
## 541  75.000000   14.010690  English         USA  -60.989310
## 542  40.000000  128.798265  English         USA   88.798265
## 543  27.000000   56.870414  English         USA   29.870414
## 544  50.000000  240.360392  English         USA  190.360392
## 545  68.000000   29.762011  English         USA  -38.237989
## 546  80.000000   90.874570  English         USA   10.874570
## 547 100.000000  242.988466  Spanish         USA  142.988466
## 548 100.000000  243.400000  English         USA  143.400000
## 549  75.000000  108.000000  English         USA   33.000000
## 550   6.500000  255.273813  English         USA  248.773813
## 551  25.000000   13.000000  English         USA  -12.000000
## 552  19.000000   40.846082  English         USA   21.846082
## 553  55.000000  259.207227  English         USA  204.207227
## 554 105.000000  267.045765  English         USA  162.045765
## 555   0.600000  274.470394  English         USA  273.870394
## 556  15.000000   12.856712  English         USA   -2.143288
## 557  25.000000  281.929795  English         USA  256.929795
## 558  65.000000  117.758500  English         USA   52.758500
## 559  12.000000  305.151265  English         USA  293.151265
## 560  12.000000   11.644755  English         USA   -0.355245
## 561  15.000000  100.734718  English         USA   85.734718
## 562  29.000000  309.208309  English         USA  280.208309
## 563  35.000000   92.219310  English         USA   57.219310
## 564 200.000000  325.233863   French      France  125.233863
## 565   8.000000   39.041505  English         USA   31.041505
## 566   8.000000   10.629321  English         USA    2.629321
## 567  48.000000  325.771424  English         USA  277.771424
## 568  30.000000   61.808775  English         USA   31.808775
## 569   2.000000  327.803731  English         USA  325.803731
## 570 110.000000  337.580051  English         USA  227.580051
## 571  10.000000  341.131793  English         USA  331.131793
## 572 135.000000  361.832400  English         USA  226.832400
## 573  85.000000  363.164265  English         USA  278.164265
## 574   7.500000   26.096852  English         USA   18.596852
## 575  42.000000  363.889678  English         USA  321.889678
## 576  25.000000  163.670000  English         USA  138.670000
## 577  65.000000   44.091067  English         USA  -20.908933
## 578 135.000000  368.871007  English         USA  233.871007
## 579  12.000000   60.161391  English         USA   48.161391
## 580 178.000000  370.541256  English         USA  192.541256
## 581 150.000000  378.436354  English         USA  228.436354
## 582  20.000000   17.436509  English         USA   -2.563491
## 583 125.000000  976.475550  English         USA  851.475550
## 584 175.000000  381.509870  English         USA  206.509870
## 585 115.000000  562.816256  English         USA  447.816256
## 586 100.000000  235.926552  English         USA  135.926552
## 587 155.000000  440.603537  English         USA  285.603537
## 588  85.000000  450.717150  English         USA  365.717150
## 589 150.000000  451.352881  English         USA  301.352881
## 590 140.000000  449.220945  English         USA  309.220945
## 591  98.000000  433.013274  English         USA  335.013274
## 592 120.000000  186.053725  English         USA   66.053725
## 593 115.000000  274.703340  English         USA  159.703340
## 594  60.000000  313.542341  English         USA  253.542341
## 595  30.000000  287.553595  English         USA  257.553595
## 596  37.000000  165.335153  English         USA  128.335153
## 597  52.500000  179.213434  English         USA  126.713434
## 598 100.000000  362.211740  English         USA  262.211740
## 599  21.000000   71.441250  English         USA   50.441250
## 600  40.000000  463.360063  English         USA  423.360063
## 601  60.000000  469.160692  English         USA  409.160692
## 602 110.000000  470.490832  English         USA  360.490832
## 603  60.000000  484.409218  English         USA  424.409218
## 604  65.000000  117.487473  English          UK   52.487473
## 605 130.000000  518.602163  English         USA  388.602163
## 606 160.000000  529.076069  English         USA  369.076069
## 607  58.800000  542.307423  English         USA  483.507423
## 608  90.000000  347.325802  English          UK  257.325802
## 609  20.000000  543.513985  English         USA  523.513985
## 610  17.000000  209.947037  English         USA  192.947037
## 611  40.000000  569.651467  English         USA  529.651467
## 612 108.000000  595.380321  English         USA  487.380321
## 613 165.000000  621.752480  English         USA  456.752480
## 614  60.000000   93.375151  English         USA   33.375151
## 615  68.000000  203.388341  English         USA  135.388341
## 616  25.000000   64.437847  English         USA   39.437847
## 617 160.000000  650.523427  English         USA  490.523427
## 618 102.000000  147.080413  English         USA   45.080413
## 619  40.000000  672.806292  English         USA  632.806292
## 620  30.000000   17.833000  English         USA  -12.167000
## 621 137.000000   85.131830  English          UK  -51.868170
## 622  42.000000   35.402320  English         USA   -6.597680
## 623  35.000000   73.034460  English         USA   38.034460
## 624 200.000000  705.717432  English         USA  505.717432
## 625  35.000000   74.558115  English         USA   39.558115
## 626 170.000000  708.200000  English         USA  538.200000
## 627  50.000000  709.827462  English         USA  659.827462
## 628 180.000000  758.410378  English         USA  578.410378
## 629 200.000000  769.653595  English         USA  569.653595
## 630 170.000000  773.312399  English         USA  603.312399
## 631  19.800000   87.754044  English         USA   67.954044
## 632  27.000000  825.500000  English         USA  798.500000
## 633   3.500000  825.500000  English         USA  822.000000
## 634  23.000000   36.642838  English         USA   13.642838
## 635  22.000000   40.270895  English         USA   18.270895
## 636 175.000000  853.708609  English          UK  678.708609
## 637 150.000000  341.131793  English         USA  191.131793
## 638   1.000000  954.305868  English         USA  953.305868
## 639 250.000000  955.119788  English         USA  705.119788
## 640 200.000000 2068.178225  English         USA 1868.178225
## 641   6.000000    6.670712  English          UK    0.670712
## 642  40.000000   19.258519  English         USA  -20.741481
## 643  25.000000    4.388563  English         USA  -20.611437
## 644  35.000000    4.388563  English         USA  -30.611437

Analyze revenue by genre

df_genre_revenue <- df |> group_by(genre) |> summarize(avg_revenue = mean(revenue, na.rm = TRUE))
print(df_genre_revenue)
## # A tibble: 10 × 2
##    genre       avg_revenue
##    <chr>             <dbl>
##  1 Action            129. 
##  2 Animation         237. 
##  3 Arts              132. 
##  4 Comedy            128. 
##  5 Documentary       120. 
##  6 Drama             140. 
##  7 Horror            189. 
##  8 Mystery           133. 
##  9 Other             180. 
## 10 SciFi              67.2
ggplot(df_genre_revenue, aes(x = reorder(genre, avg_revenue), y = avg_revenue)) +
  geom_bar(stat = "identity", fill = "blue") +
  coord_flip() +
  labs(title = "Average Revenue by Genre", x = "Genre", y = "Average Revenue")

Analyze critic scores by genre

df_genre_critics <- df |> group_by(genre) |> summarize(avg_critic_score = mean(critics_score, na.rm = TRUE))
print(df_genre_critics)
## # A tibble: 10 × 2
##    genre       avg_critic_score
##    <chr>                  <dbl>
##  1 Action                  47.9
##  2 Animation               59.7
##  3 Arts                    58.5
##  4 Comedy                  48.2
##  5 Documentary             68.5
##  6 Drama                   57.2
##  7 Horror                  44.9
##  8 Mystery                 51.7
##  9 Other                   57.6
## 10 SciFi                   49.3
ggplot(df_genre_critics, aes(x = reorder(genre, avg_critic_score), y = avg_critic_score)) +
  geom_bar(stat = "identity", fill = "red") +
  coord_flip() +
  labs(title = "Average Critic Score by Genre", x = "Genre", y = "Average Critic Score")

Analyze audience scores by genre

df_genre_audience <- df |> group_by(genre) |> summarize(avg_audience_score = mean(audience_score, na.rm = TRUE))
print(df_genre_audience)
## # A tibble: 10 × 2
##    genre       avg_audience_score
##    <chr>                    <dbl>
##  1 Action                    54.0
##  2 Animation                 62.9
##  3 Arts                      62.7
##  4 Comedy                    51.9
##  5 Documentary               64.4
##  6 Drama                     58.5
##  7 Horror                    48.3
##  8 Mystery                   51.3
##  9 Other                     56.4
## 10 SciFi                     46.1
ggplot(df_genre_audience, aes(x = reorder(genre, avg_audience_score), y = avg_audience_score)) +
  geom_bar(stat = "identity", fill = "green") +
  coord_flip() +
  labs(title = "Average Audience Score by Genre", x = "Genre", y = "Average Audience Score")

Compare critic score vs audience score

cor_critics_vs_audience <- cor(df$critics_score, df$audience_score, use = "complete.obs")
print(paste("Correlation between Critics and Audience Scores:", round(cor_critics_vs_audience, 2)))
## [1] "Correlation between Critics and Audience Scores: 0.77"
ggplot(df, aes(x = critics_score, y = audience_score)) +
  geom_point(alpha = 0.5, color = "purple") +
  geom_smooth(method = "lm", se = FALSE, color = "black") +
  labs(title = "Critic Score vs Audience Score", x = "Critic Score", y = "Audience Score")
## `geom_smooth()` using formula = 'y ~ x'