scatterUI: scatterUI: shiny module UI for scatterplot

View source: R/scatter.R

scatterUIR Documentation

scatterUI: shiny module UI for scatterplot

Description

Shiny module UI for scatterplot

Usage

scatterUI(id, label = "scatterplot")

Arguments

id

id

label

label

Details

Shiny module UI for scatterplot

Value

Shiny module UI for scatterplot

Examples

library(shiny)
library(ggplot2)
library(ggpubr)
ui <- fluidPage(
  sidebarLayout(
    sidebarPanel(
      scatterUI("scatter")
    ),
    mainPanel(
      plotOutput("scatter_plot"),
      ggplotdownUI("scatter")
    )
  )
)

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

  out_scatter <- scatterServer("scatter",
    data = data, data_label = data.label,
    data_varStruct = NULL
  )

  output$scatter_plot <- renderPlot({
    print(out_scatter())
  })
}

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