plotting the data

This commit is contained in:
Aron Lindberg 2015-11-07 12:04:38 -05:00
parent 38b535e9fc
commit da0fe0719b

View File

@ -5,6 +5,7 @@ shinyServer(function(input, output) {
emergency2013 <- read.csv("./data/emergency2013.csv")
output$distPlot <- renderPlot({
plot(faithful$eruptions, faithful$waiting)
plot(emergency2013$erdatemm, emergency2013$vstctgry)
})
})