View source: R/modulePlotting.R
module_plotting_server | R Documentation |
module_plotting_server
module_plotting_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: |
... |
Further arguments, such as 'logfilename', 'csvdir' and 'plotdir' |
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_plotting_server,
"modulePlotting",
rv = rv,
logfilename = logfilename
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.