Data merge module server
data_merge_srv.Rd
Usage
data_merge_srv(
id = "merge_id",
selector_list,
datasets,
merge_function = "dplyr::full_join",
anl_name = "ANL"
)
Arguments
- id
An ID string that corresponds with the ID used to call the module's UI function.
- selector_list
(
reactive
)
output fromdata_extract_multiple_srv()
or a reactive named list of outputs fromdata_extract_srv()
. When using a reactive named list, the names must be identical to the shiny ids of the respectivedata_extract_ui()
.- datasets
(
FilteredData
)
object containing data (seeteal.slice::FilteredData
).- merge_function
(
character(1)
orreactive
)
A character string of a function that accepts the argumentsx
,y
andby
to perform the merging of datasets.- anl_name
(
character(1)
)
Name of the analysis dataset.
Value
reactive expression with output from merge_datasets.
Details
When additional processing of the data_extract
list input was required, data_merge_srv()
could be
combined with data_extract_multiple_srv()
or data_extract_srv()
to influence the selector_list
input.