Learn R Programming

rapbase (version 1.24.2)

statsGuide: Shiny modules providing the Stats Guide

Description

Shiny modules providing the Stats Guide

Usage

statsGuideUI(id)

statsGuideServer(id, registryName)

statsGuideApp()

Value

Functions ui and server representing the (module) app

Arguments

id

Character string module ID

registryName

Character string registry name key

Examples

Run this code
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