Function inspects data and assigns a summary type when not specified
in the type argument.
assign_summary_type(data, variables, value, type = NULL, cat_threshold = 10L)(data.frame)
a data frame
(character)
character vector of column names in data
(named list)
named list of values to show for dichotomous variables, where
the names are the variables
(named list)
named list of summary types, where names are the variables
(integer)
for base R numeric classes with fewer levels than
this threshold will default to a categorical summary. Default is 10L
named list
assign_summary_type(
data = trial,
variables = c("age", "grade", "response"),
value = NULL
)
#> $age
#> [1] "continuous"
#>
#> $grade
#> [1] "categorical"
#>
#> $response
#> [1] "dichotomous"
#>