module_atemp_pl_server {DQAgui}R Documentation

module_atemp_pl_server

Description

module_atemp_pl_server

Usage

module_atemp_pl_server(input, output, session, rv, input_re)

Arguments

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: input_re = reactive(input)

Value

The function returns a shiny server module.

See Also

https://shiny.rstudio.com/articles/modules.html

Examples

if (interactive()) {
rv <- list()
shiny::callModule(
  module_atemp_pl_server,
  "moduleAtemporalPlausibilities",
  rv = rv,
  input_re = reactive(input)
)
}


[Package DQAgui version 0.2.3 Index]