loading the data

master
Aron Lindberg 2015-11-07 12:04:32 -05:00
parent 3d51e85c7e
commit 38b535e9fc
1 changed files with 1 additions and 7 deletions

View File

@ -2,13 +2,7 @@ library(shiny)
# Define server logic required to draw a histogram
shinyServer(function(input, output) {
# Expression that generates a histogram. The expression is
# wrapped in a call to renderPlot to indicate that:
#
# 1) It is "reactive" and therefore should re-execute automatically
# when inputs change
# 2) Its output type is a plot
emergency2013 <- read.csv("./data/emergency2013.csv")
output$distPlot <- renderPlot({
plot(faithful$eruptions, faithful$waiting)