plotting the data

master
Aron Lindberg 2015-11-07 12:04:38 -05:00
parent 38b535e9fc
commit da0fe0719b
1 changed files with 2 additions and 1 deletions

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)
})
})