panel_group | R Documentation |
Designed to group panel_item
elements. Used to handle shiny
inputs in the encoding panel.
panel_group(..., id = NULL)
... |
( |
id |
optional, ( |
(shiny.tag
)
library(shiny)
panel_group(
panel_item(
title = "Display",
collapsed = FALSE,
checkboxGroupInput(
"check",
"Tables display",
choices = LETTERS[1:3],
selected = LETTERS[1]
),
radioButtons(
"radio",
label = "Plot type",
choices = letters[1:2],
selected = letters[1]
)
),
panel_item(
title = "Pre-processing",
radioButtons(
"filtering",
"What to filter",
choices = LETTERS[1:4],
selected = LETTERS[1]
),
radioButtons(
"na_action",
"NA action",
choices = letters[1:3],
selected = letters[1]
)
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.