Description Usage Arguments Details Value Examples
Shiny module server for barplot.
1 |
id |
id |
data |
Reactive data |
data_label |
Reactive data label |
data_varStruct |
Reactive List of variable structure, Default: NULL |
nfactor.limit |
nlevels limit in factor variable, Default: 10 |
Shiny module server for barplot.
Shiny module server for barplot.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | library(shiny);library(ggplot2);library(ggpubr);
ui <- fluidPage(
sidebarLayout(
sidebarPanel(
barUI("bar")
),
mainPanel(
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())
})
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.