Internal helper function that routes to the appropriate data summarization function based on the detected variable types (categorical vs continuous).
generate_data_summary(
variable_types,
subset_data,
dep_crwd,
indep_crwd,
args,
...
)Data summary object (type depends on variable types):
For integer/numeric dep + factor/character indep: calls summarize_int_cat_data()
For factor/character dep: calls summarize_cat_cat_data()
For mixed types: throws error
List with dep and indep variable type information
Data frame subset for the current crowd
Character vector of dependent variable names for current crowd
Character vector of independent variable names for current crowd
List of makeme function arguments
Additional arguments passed to summarization functions