This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# All the visualizations are for Title.type = Feature Films. I have used the same packages as mentioned in the example you had given. | |
library(ggplot2) | |
library(dplyr) | |
movie_data <- read.csv("movie_data.csv") | |
#creating the movies dataframe | |
dfMoviesFeatureFilm <- subset(movie_data, movie_data$Title.type == "Feature Film") | |
#Vis1 that plots imdb-ratings for feature films excluding the missing values | |
dfMoviesFeatureFilmRating <- subset(dfMoviesFeatureFilm, dfMoviesFeatureFilm$IMDb.Rating != "") |