View source: R/moduleCorrectedStatistics.R
module_correctedstats_server | R Documentation |
module_correctedstats_server
module_correctedstats_server(input, output, session, rv, input_re)
input |
Shiny server input object |
output |
Shiny server output object |
session |
Shiny session object |
rv |
The global 'reactiveValues()' object, defined in server.R |
input_re |
The Shiny server input object, wrapped into a reactive
expression: |
The function returns a shiny server module.
https://shiny.rstudio.com/articles/modules.html
if (interactive()) {
rv <- list()
logfilename <- paste0(tempdir(), "/log.txt")
shiny::callModule(
module_correctedstats_server,
"moduleCorrectedStats",
rv = rv,
logfilename = logfilename
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.