histogramUI: histogramUI: shiny module UI for histogram

View source: R/histogram.R

histogramUIR Documentation

histogramUI: shiny module UI for histogram

Description

Shiny module UI for histogram

Usage

histogramUI(id, label = "histogram")

Arguments

id

id

label

label

Details

Shiny module UI for histogram

Value

Shiny module UI for histogram

Examples

library(shiny)
library(ggplot2)
library(ggpubr)
ui <- fluidPage(
  sidebarLayout(
    sidebarPanel(
      histogramUI("histogram")
    ),
    mainPanel(
      plotOutput("histogram"),
      ggplotdownUI("histogram")
    )
  )
)

server <- function(input, output, session) {
  data <- reactive(mtcars)
  data.label <- reactive(jstable::mk.lev(mtcars))

  out_histogram <- histogramServer("histogram",
    data = data, data_label = data.label,
    data_varStruct = NULL
  )

  output$histogram <- renderPlot({
    print(out_histogram())
  })
}

jsmodule documentation built on Oct. 18, 2023, 9:08 a.m.