Description Usage Arguments Details Value Examples
Option & download module UI for ggpairs
1 | ggpairsModuleUI2(id)
|
id |
id |
Option & download module UI for ggpairs
Option & download module UI for ggpairs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | library(shiny);library(DT);library(data.table);library(jstable);library(ggplot2)
library(GGally)
ui <- fluidPage(
sidebarLayout(
sidebarPanel(
ggpairsModuleUI1("ggpairs")
),
mainPanel(
plotOutput("ggpairs_plot"),
ggpairsModuleUI2("ggpairs")
)
)
)
server <- function(input, output, session) {
data <- reactive(mtcars)
data.label <- reactive(jstable::mk.lev(mtcars))
out_ggpairs <- callModule(ggpairsModule2, "ggpairs", data = data, data_label = data.label,
data_varStruct = NULL)
output$kaplan_plot <- renderPlot({
print(out_ggpairs())
})
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.