mirror of
https://github.com/bspeice/betterwithdata_cleaning_4
synced 2025-07-06 16:25:03 -04:00
10 lines
251 B
R
10 lines
251 B
R
library(shiny)
|
|
|
|
# Define server logic required to draw a histogram
|
|
shinyServer(function(input, output) {
|
|
emergency2013 <- read.csv("./data/emergency2013.csv")
|
|
|
|
output$distPlot <- renderPlot({
|
|
plot(faithful$eruptions, faithful$waiting)
|
|
})
|
|
}) |