Developing Data Products Course Project: Shiny Application and Reproducible Pitch

Zoe

January 13, 2019

Welcome

This is an R Markdown presentation for coursera project: developing data products. I used “Diamonds” in ggplot2 package.

Variables

Slide with R Output

======================================================== library(ggplot2) library(plotly) data(diamonds) d <- diamonds[sample(nrow(diamonds), 1000), ]

Tab1 Visualization

The visualization is based on x-diamonds, y-prices, and qualitative variables as cut,clarity,color.. This helps you understand different level of quality of diamonds.

You can simulate new dataset using button function

plot_ly(d, x = ~carat, y = ~price, color = ~factor(cut))

Tab2 Filter

This tab serves the function of selecting different features. You can download your selected data using download button.

Shiny App: