This function allows the user to select which variables to analyze from a given description data frame. The function returns a vector of variable names that are selected for analysis.

survey_variables(desc = NULL)

Arguments

desc

A data frame or tibble containing variable descriptions. Default is NULL.

Value

A character vector of variable names that are selected for analysis.

Examples

if (FALSE) { # \dontrun{
# Example usage:
selected_vars <- survey_variables(desc = your_description_dataframe)
} # }