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