Examples for 'shinydashboard::dashboardPage'


Dashboard page

Aliases: dashboardPage

Keywords:

### ** Examples

## Only run this example in interactive R sessions
if (interactive()) {
# Basic dashboard page template
library(shiny)
shinyApp(
  ui = dashboardPage(
    dashboardHeader(),
    dashboardSidebar(),
    dashboardBody(),
    title = "Dashboard example"
  ),
  server = function(input, output) { }
)
}
Error in loadNamespace(name): there is no package called 'webshot'

[Package shinydashboard version 0.7.2 Index]