function to assign labels to levels of a variable
util_assign_levlabs(
variable,
string_of_levlabs,
splitchar,
assignchar,
ordered = TRUE,
variable_name = "",
warn_if_inadmissible = TRUE
)a data.frame with labels assigned to categorical variables (if available)
vector vector with values of a study variable
character len=1. value labels,
e.g. 1 = no | 2 = yes
character len=1. splitting character(s) in
string_of_levlabs, usually SPLIT_CHAR
character len=1. assignment operator character(s) in
string_of_levlabs, usually = or :
the function converts variable to a factor, by default to
an ordered factor assuming LHS of assignments being
meaningful numbers, e.g. 1 = low | 2 = medium | 3 = high.
If no special order is given, set ordered to FALSE,
e.g. for 1 = male | 2 = female or
1 = low | 2 = high | 3 = medium.
character the name of the variable being converted for warning messages
logical warn on con_inadmissible_categorical values
Other data_management:
util_check_data_type(),
util_check_group_levels(),
util_compare_meta_with_study(),
util_dichotomize(),
util_merge_data_frame_list(),
util_rbind(),
util_remove_na_records(),
util_replace_hard_limit_violations(),
util_study_var2factor(),
util_table_of_vct()