This function provides information about the variables available in the education finance dataset, including their names, types, and brief descriptions.
Examples
if (FALSE) { # \dontrun{
# list all available variables in skinny dataset
vars <- list_variables()
# list all variables in full dataset
full_vars <- list_variables(dataset_type = "full")
# list only expenditure variables in full dataset
exp_vars <- list_variables(dataset_type = "full", category = "expenditure")
} # }