Description Usage Arguments Details Value Functions Examples
A shiny module to explore factors in tibble of time series(tsibble).
1 2 3 4 5 | explore_factor_ui(id)
explore_factor_server(id)
explore_factor_app(use_online_data = FALSE)
|
id |
An ID string of module to connecting UI function and Server function. |
use_online_data |
A logical to determine whether to use test data from database or not. Default FALSE means to use achieved data for tests. |
The module is an UI for user to explore factors.
UI function doesn't return value.
Server function doesn't return value.
explore_factor_ui
: UI function of exploring factors.
explore_factor_server
: Server function of exploring factors.
explore_factor_app
: Testing App of exploring factors.
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(
explore_factor_ui("explore_factor_module")
)
# Call control server in App server
server <- function(input, output, session) {
explore_factor_server("explore_factor_module")
}
# Run testing App for integration testing
explore_factor__app()
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.