Building Dashboards with shinydashboard
Png Kee Seng
Researcher
shinydashboard provides an intuitive way to create a dashboard in R




shinyui): fluidPage()titlePanel()server()shinyApp() glues them all together and renders the applibrary(shiny)
ui <- fluidPage(titlePanel("Your first app"))
server <- function(input, output){
}
shinyApp(ui, server)

Building Dashboards with shinydashboard