powered by
Shiny modules providing the Stats Guide
statsGuideUI(id)statsGuideServer(id, registryName)statsGuideApp()
statsGuideServer(id, registryName)
statsGuideApp()
Functions ui and server representing the (module) app
Character string module ID
Character string registry name key
ui <- shiny::fluidPage( statsGuideUI("statsGuide") ) server <- function(input, output, session) { statsGuideServer("statsGuide", "test") } if (interactive()) { shiny::shinyApp(ui, server) }
Run the code above in your browser using DataLab