Best Movies all time (By Rating)

These are the best movies of all time by Rating, The best movie of all time is “The Dark Knight”

Are Movie ratings higher if runtime is higher?

Best_Movies_sort <- arrange(IMDB, desc(Rating))
Best_Movies_sort <- filter(Best_Movies_sort, Year >= 2012)

ggplot(Best_Movies_sort, aes(x=Rating, y=Runtime)) + geom_point() + 
  labs(title = "Movie Rattings by Runtime 2012 - 2016")