HH
April 16, 2018
The purpose of this project is to provide the Car Feature Analysis shiny application which visualize the car dataset based on target audience's interest as follows:
This application will provide potential automobile customers with a concise analysis to project the best of buck for a broad selection of automobiles.
The source data for this project was downloaded from Car Features and MSRP.
Access https://hh0415.shinyapps.io/CarFeatureAnalysis/. The Car Feature Analysis shiny application displays as follows.
Use the widget input (sliders and radio buttons) to narrow down the parameters for the car the potential customer desired as follows:
This project used subsetted dataset from the original dataset based on the target audience's interest as follows:
car_table <- read.table("data.csv",
header=TRUE, quote="\"", sep=",", na.strings = "NA")
car_table_subset <- subset(car_table,
Year >= 2017 &
(Make == 'BMW' | Make == 'Audi' |
Make == 'Mercedes-Benz' | Make == 'Porsche' ))
unique(car_table_subset$Make)
[1] BMW Porsche Audi Mercedes-Benz
48 Levels: Acura Alfa Romeo Aston Martin Audi Bentley BMW ... Volvo
unique(car_table_subset$Year)
[1] 2017