library(shiny)
ui <- fluidPage(
)
server <- function(input, output, session){
}
shinyApp(ui, server)Shiny workflow
Shiny
How to become a better shiny developer
Development cycle (creating apps, making changes, experimenting with the results)
Steps:
- write some code
- launch the app with short-cut:
cmd/ctrl + shift + enter(source) - interactively experiment with the app
- close app, go back to 1.
Create the app with the following lines: