phase1UI: Create the UI for Phase 1.

Description Usage Arguments Value Examples

Description

This creates all of the UI for our Phase 1 climate screening worksheet. You should call it in the ui function of your shiny app.

Usage

1

Arguments

id

the ID that will be used to uniquely identify all of the ui components in the shiny module. Must be the same as the id used in callModule.

Value

UI components that collectively represent the climate screening worksheet of Phase 1.

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.