Get merge call from a list of selectors
get_merge_call.Rd
Returns list of calls depending on selector(s) and type of the merge Order of merge is the same as in selectors passed to the function.
Usage
get_merge_call(
selector_list,
join_keys = teal.data::join_keys(),
dplyr_call_data = get_dplyr_call_data(selector_list, join_keys = join_keys),
merge_function = "dplyr::full_join",
anl_name = "ANL"
)
Arguments
- 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()
.- join_keys
(
JoinKeys
) nested list of keys used for joining- dplyr_call_data
(
list
) simplified selectors with aggregated set of filters,- 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.