ggplotdownUI | R Documentation |
Option & download module UI for ggplot
ggplotdownUI(id)
id |
id |
Option & download module UI for ggplot
Option & download module UI for ggplot
library(shiny)
library(DT)
library(data.table)
library(jstable)
library(ggplot2)
ui <- fluidPage(
sidebarLayout(
sidebarPanel(
kaplanUI("kaplan")
),
mainPanel(
plotOutput("kaplan_plot"),
ggplotdownUI("kaplan")
)
)
)
server <- function(input, output, session) {
data <- reactive(mtcars)
data.label <- reactive(jstable::mk.lev(mtcars))
out_kaplan <- callModule(kaplanModule, "kaplan",
data = data, data_label = data.label,
data_varStruct = NULL
)
output$kaplan_plot <- renderPlot({
print(out_kaplan())
})
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.