scatterUI {jsmodule}R 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())
  })
}

[Package jsmodule version 1.5.4 Index]