File size: 151 Bytes
27e0aed
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
library(shiny)

ui <- fluidPage(
  titlePanel("Example Shiny Application")
)

server <- function(input, output) {
}

shinyApp(ui = ui, server = server)