Skip to contents

[Stable] 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 with shiny::moduleServer(); See the vignette for an example. However, ui_teal_with_splash() is then preferred to this function.

data

(TealData or TealDataset or TealDatasetConnector or list or data.frame or MultiAssayExperiment)
R6 object as returned by teal.data::cdisc_data(), teal.data::teal_data(), teal.data::cdisc_dataset(), teal.data::dataset(), teal.data::dataset_connector() or teal.data::cdisc_dataset_connector() or a single data.frame or a MultiAssayExperiment 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 use teal.data::teal_data() or teal.data::cdisc_data() with check = TRUE enabled.

modules

teal_modules object containing the output modules which will be displayed in the teal application. See modules() and module() for more details.

filter

(teal_slices)
Specification of initial filter. Filters can be specified using teal_slices(). Old way of specifying filters through a list is deprecated and will be removed in the next release. Please fix your applications to use teal_slices().

Value

reactive, return value of srv_teal()