Reproducible Pitch Presentation

4/4/2018

Shiny Application

You can find the compare shiny application here:

https://ghazalp.shinyapps.io/Compare/

How does it work?

This app has a side panel and a main panel.

There are 3 sliders on the side panel and you can choose 3 numbers.

Main panel has 2 tabs.

-Documantaion

You can read instruction to use the app here.

-Results

you can see minimum, maximum, mean, and median of the numbers you chose.

Embedded R code:

library(ggplot2)
g <- ggplot(mtcars,aes(x=mpg, y=hp, col=cyl))
g <- g + geom_point(size=4)
g

plot of chunk unnamed-chunk-1

Plot details

x axis shows: miles per gallon

y axis shows: horsepower

color shows: nmber of cylinders

Thank you!