Server function that loads the data through reactive loading and then delegates
to srv_teal()
.
srv_teal_with_splash.Rd
Please also refer to the doc of init()
.
Usage
srv_teal_with_splash(id, data, modules, filter = teal_slices())
Arguments
- id
(
character
)
module id to embed it, if provided, the server function must be called withshiny::moduleServer()
; See the vignette for an example. However,ui_teal_with_splash()
is then preferred to this function.- data
(
TealData
orTealDataset
orTealDatasetConnector
orlist
ordata.frame
orMultiAssayExperiment
)R6
object as returned byteal.data::cdisc_data()
,teal.data::teal_data()
,teal.data::cdisc_dataset()
,teal.data::dataset()
,teal.data::dataset_connector()
orteal.data::cdisc_dataset_connector()
or a singledata.frame
or aMultiAssayExperiment
or a list of the previous objects or function returning a named list. NOTE: teal does not guarantee reproducibility of the code when names of the list elements do not match the original object names. To ensure reproducibility please useteal.data::teal_data()
orteal.data::cdisc_data()
withcheck = TRUE
enabled.- modules
teal_modules
object containing the output modules which will be displayed in the teal application. Seemodules()
andmodule()
for more details.- filter
(
teal_slices
)
Specification of initial filter. Filters can be specified usingteal_slices()
. Old way of specifying filters through a list is deprecated and will be removed in the next release. Please fix your applications to useteal_slices()
.
Value
reactive
, return value of srv_teal()