Description Usage Arguments Value Examples
Server function of Data Visualization in Shiny
1 |
data |
A Dataframe |
A Shiny server module
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # an example
require(shiny)
if(interactive()) {
ui <- fluidPage(
typeplotUi("type")
)
server <- function(input, output, session) {
callModule(typeplot, "type", data = CO2)
}
shinyApp(ui, server)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.