Skip to contents

This function provides information about the variables available in the education finance dataset, including their names, types, and brief descriptions.

Usage

list_variables(dataset_type = "skinny", category = "all")

Arguments

dataset_type

A string specifying whether to list variables for "skinny" (default) or "full" dataset.

category

Optional. Filter variables by category: "id", "time", "geographic", "demographic", "revenue", "expenditure", "economic", "governance", or "all" (default).

Value

A tibble with variable information

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")
} # }