scatterServer {jsmodule} | R Documentation |
scatterServer: shiny module server for scatterplot.
Description
Shiny module server for scatterplot.
Usage
scatterServer(id, data, data_label, data_varStruct = NULL, nfactor.limit = 10)
Arguments
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 |
Details
Shiny module server for scatterplot.
Value
Shiny module server 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.6 Index]