| title: “Untitled” |
| output: |
| flexdashboard::flex_dashboard: |
| orientation: columns |
| vertical_layout: fill |
| runtime: shiny |
dataset <- eventReactive(input$file1,{
dataset <- read.csv(input$file1$datapath)
})
renderTable({
dataset <- dataset()
dataset
})