phase1: The server component of our phase 1 Shiny module.

Description Usage Arguments Details Examples

Description

This function should be called using callModule in the server function of your shiny app. It handles the downloading of the report.

Usage

1
phase1(input, output, session)

Arguments

input

mandatory param by Shiny

output

mandatory param by Shiny

session

mandatory param by Shiny

Details

In callModule, use the template callModule(phase1, id), where id is the same string that you use in phase1UI.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
# minimal example
ui <- fluidPage(
  phase1UI("p1")
)
server <- function(input, output, session) {
 callModule(phase1, "p1")
}

## End(Not run)

tbadams45/dtphase1 documentation built on May 31, 2019, 3:58 a.m.