Description Usage Arguments Value Examples
View source: R/univariate_datatransform.R
DataTransform server function
1 | dataTransform(input, output, session)
|
session |
A Server function
1 2 3 4 5 6 7 8 9 10 11 12 | require(shiny)
if(interactive()) {
ui <- fluidPage(
dataTransformUi("prova"))
server <- function(input, output, session) {
callModule(dataTransform, "prova")
}
shinyApp(ui, server )
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.