Olusola Afuwape
25th September, 2019
This shiny application used the movies dataset. The application compared the numerical variable audience_score with some of the categorical variables. The dataset was generated from the Rotten Tomatoes and IMDb databases.
The shiny application is used to generate boxplots of the numerical response varaible and categorical explanatory variables. 12 variables were used to produce the different boxplots for data graphical visualization.
The list below showed the 12 required varibles beginning with the response variable:
Continuation of the variables list:
Below is the code for plots:
boxplot(audience_score ~ oscar_season, data = movies, col = c("thistle", "tan"), xlab = "Oscar", ylab = "Audience")
boxplot(audience_score ~ summer_season, data = movies, col = c("yellowgreen", "snow"), xlab = "Summer", ylab = "Audience")
boxplot(audience_score ~ feature_film, data = movies, col = c("slateblue", "mediumaquamarine"), xlab = "Feature film", ylab = "Audience")