powered by
module_completeness_server
module_completeness_server(input, output, session, rv, input_re)
The function returns a shiny server module.
Shiny server input object
Shiny server output object
Shiny session object
The global 'reactiveValues()' object, defined in server.R
The Shiny server input object, wrapped into a reactive expression: input_re = reactive({input})
input_re = reactive({input})
https://shiny.rstudio.com/articles/modules.html
if (interactive()) { rv <- list() shiny::callModule( module_completeness_server, "moduleCompleteness", rv = rv, input_re = reactive(input) ) }
Run the code above in your browser using DataLab