2011 Best Movies

2011 was a wonderful year for movies

Top 10 movies in 2011 by IMDb Rating

##                                      Title     Genre Rating
## 1                  Guardians of the Galaxy    Action    8.1
## 2                               Prometheus Adventure    7.0
## 3                                     Sing Animation    7.2
## 4                            Suicide Squad    Action    6.2
## 5                           The Great Wall    Action    6.1
## 6                               La La Land    Comedy    8.3
## 7                                 Mindhorn    Comedy    6.4
## 8                       The Lost City of Z    Action    7.1
## 9                               Passengers Adventure    7.0
## 10 Fantastic Beasts and Where to Find Them Adventure    7.5

Consider the following scatterplot that shows the interaction between the Rating vs. the Length of all movies in 2011.

Are longer movies rated higher?

ggplot(selected_movies, aes(x=Rating, y=Runtime))+
  geom_point()+
  labs(
    title = "2011 movies Rating vs. Runtime",
    x= "Rating",
    y="Runtime (in minutes)"
  )

Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.