boxUI {jsmodule} | R Documentation |
boxUI: shiny module UI for boxplot
Description
Shiny module UI for boxplot
Usage
boxUI(id, label = "boxplot")
Arguments
id |
id |
label |
label |
Details
Shiny module UI for boxplot
Value
Shiny module UI for boxplot
Examples
library(shiny)
library(ggplot2)
library(ggpubr)
ui <- fluidPage(
sidebarLayout(
sidebarPanel(
boxUI("box")
),
mainPanel(
optionUI("box"),
plotOutput("box_plot"),
ggplotdownUI("box")
)
)
)
server <- function(input, output, session) {
data <- reactive(mtcars)
data.label <- reactive(jstable::mk.lev(mtcars))
out_box <- boxServer("box",
data = data, data_label = data.label,
data_varStruct = NULL
)
output$box_plot <- renderPlot({
print(out_box())
})
}
[Package jsmodule version 1.5.6 Index]