Vineet Jaiswal
28th October 2017
This application is a movie data analysis, currently I am taking input from front end filters, do the process on server side code and create a ggplot graph and table as output
This application can extend a lot and we can show a lot from input data
I got the data from Kaggle site https://www.kaggle.com/tmdb/tmdb-movie-metadata
Specification of data
rawData <- read.csv("raw.csv", stringsAsFactors = F)
colnames(rawData)
[1] "budget" "genres" "homepage"
[4] "id" "keywords" "original_language"
[7] "original_title" "overview" "popularity"
[10] "production_companies" "production_countries" "release_date"
[13] "revenue" "runtime" "spoken_languages"
[16] "status" "tagline" "title"
[19] "vote_average" "vote_count"
rawData$genres[1]
[1] "[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"name\": \"Fantasy\"}, {\"id\": 878, \"name\": \"Science Fiction\"}]"
GIT hub Code Path https://github.com/jaiswalvineet/Final9/blob/master/server.R
GIT hub Code Path https://github.com/jaiswalvineet/Final9/blob/master/ui.R
App Path https://vineet.shinyapps.io/final9/