Learn R Programming

gerda (version 0.5.0)

gerda_covariates_codebook: Get Codebook for County-Level Covariates

Description

Returns the data dictionary for county-level (Kreis) covariates from INKAR. Provides variable names, labels, units, categories, original INKAR codes, and missing data information for all county-level socioeconomic and demographic indicators.

Usage

gerda_covariates_codebook()

Arguments

Value

A data frame with 32 rows documenting all variables in the county covariates dataset.

See Also

gerda_covariates for the actual covariate data

Examples

Run this code
# View the full codebook
codebook <- gerda_covariates_codebook()
print(codebook)

# Find variables by category
library(dplyr)
codebook %>%
  filter(category == "Demographics")

# Find variables with good coverage
codebook %>%
  filter(missing_pct < 5)

Run the code above in your browser using DataLab