有光泽:sidebarPanel sidebarLayout

时间:2017-05-24 14:54:40

标签: shiny sidebar

我一直试图弄明白,何时使用sidebarLayout以及何时不使用sidebarLayout。我被困住了,也许有人可以向我解释。

感谢。

1 个答案:

答案 0 :(得分:0)

基本上使用sidebarLayout指定页面的布局,这意味着您的页面将被分成两部分; sidebarPanelmainPanel

sidebarLayout内,您可以使用sidebarPanel来指定网页侧面板的外观。简而言之,首先使用sidebarLayout,然后使用sidebarPanel

以下示例摘自shiny's文档。它说明了上面所述的内容。如果您希望页面看起来像下面的应用程序,则可以使用它。

library(shiny)
# Define UI
ui <- fluidPage(

  # Application title
  titlePanel("Hello Shiny!"),

  sidebarLayout(

    # Sidebar with a slider input
    sidebarPanel(
      sliderInput("obs",
                  "Number of observations:",
                  min = 0,
                  max = 1000,
                  value = 500)
    ),

    # Show a plot of the generated distribution
    mainPanel(
      plotOutput("distPlot")
    )
  )
)

# Server logic
server <- function(input, output) {
  output$distPlot <- renderPlot({
    hist(rnorm(input$obs))
  })
}

# Complete app with UI and server components
shinyApp(ui, server)