Developing Data Products Project

Cleyton Farias
January 29, 2019

Overview

  • This application examines the data from imdb and Rotten Tomatoes of 651 movies released in the US between 1970 and 2014;

  • The application provides an interface where the user can choose what attributes to be plotted as well as a filter regarding preferred studios.

  • The appplication displays an scatterplot, a histogram as well as the dataset.

  • To have access to the application, please refer to this link ;

  • All the necessary code to reproduce this exercise is available Here

User Options

  • The user can choose from one or more studios available in the dataset. Available options: IMDB number of votes, Critics score Audience Score Runtime

  • Moreover, the user can choose which variables to be plotted on the application;

  • The user can choose to display or not the dataset;

  • Also, the user can download the dataset in csv or tsv formats.

User Options

  • A summary of the dataset:
library(data.table);library(dplyr)
movies <- fread("~/Dropbox/R_Courses/Data_specialization/09_developing_data_products/final_project/presentation/movies.csv")
movies %>%
    select(1:3) %>% 
    summary()
    title            title_type           genre          
 Length:651         Length:651         Length:651        
 Class :character   Class :character   Class :character  
 Mode  :character   Mode  :character   Mode  :character  

User Interface