lineUI | R Documentation |
Shiny module UI for lineplot
lineUI(id, label = "lineplot")
id |
id |
label |
label |
Shiny module UI for lineplot
Shiny module UI for lineplot
library(shiny)
library(ggplot2)
library(ggpubr)
ui <- fluidPage(
sidebarLayout(
sidebarPanel(
lineUI("line")
),
mainPanel(
optionUI("line"),
plotOutput("line_plot"),
ggplotdownUI("line")
)
)
)
server <- function(input, output, session) {
data <- reactive(mtcars)
data.label <- reactive(jstable::mk.lev(mtcars))
out_line <- lineServer("line",
data = data, data_label = data.label,
data_varStruct = NULL
)
output$line_plot <- renderPlot({
print(out_line())
})
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.