Description Usage Arguments Details Value Functions Examples
A shiny module for load_data.
1 2 3 4 5 | load_data_ui(id)
load_data_server(id)
load_data_app()
|
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 ...
load_data_ui
: UI function of load_data.
load_data_server
: Server function of load_data.
load_data_app
: Testing App of load_data.
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(
load_data_ui("load_data_module")
)
# Call control server in App server
server <- function(input, output, session) {
load_data <- load_data_server("load_data_module")
}
# Run testing App for integration testing
load_data_app()
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.