Below is a list of the top 10 movies from 2016. The list is based off of the movies’ IMDB ratings.
## Title Year Rating Runtime
## 1 Dangal 2016 8.8 161
## 2 Kimi no na wa 2016 8.6 106
## 3 Koe no katachi 2016 8.4 129
## 4 La La Land 2016 8.3 128
## 5 Paint It Black 2016 8.3 96
## 6 Hacksaw Ridge 2016 8.2 139
## 7 Lion 2016 8.1 118
## 8 Zootopia 2016 8.1 108
## 9 Ah-ga-ssi 2016 8.1 144
## 10 Arrival 2016 8.0 116
The following scatterplot displays the relation between Rating vs Runtime for movies in 2016
ggplot(movie_data3, aes(x = Rating, y = Runtime)) + geom_point() +
labs(
title = "2016 Movies Rating vs Runtime",
x = "Rating",
y = "Runtime (in minutes)"
)