4/4/2018
You can find the compare shiny application here:
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.
library(ggplot2)
g <- ggplot(mtcars,aes(x=mpg, y=hp, col=cyl))
g <- g + geom_point(size=4)
g
x axis shows: miles per gallon
y axis shows: horsepower
color shows: nmber of cylinders
Thank you!