Description Usage Arguments Details Value Functions Examples
A shiny module for data_dictionary.
1 2 3 4 5 |
id |
An ID string of module to connecting UI function and Server function. |
The module is an UI for user to ...
UI function doesn't return value.
Server function return a data frame of ...
data_dictionary_ui
: UI function of data_dictionary.
data_dictionary_server
: Server function of data_dictionary.
data_dictionary_app
: Testing App of data_dictionary.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Not run:
# Set up control UI in app UI
ui <- fluidPage(
data_dictionary_ui("data_dictionary_module")
)
# Call control server in App server
server <- function(input, output, session) {
data_dictionary <- data_dictionary_server("data_dictionary_module")
}
# Run testing App for integration testing
data_dictionary_app()
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.