Prepare education level target variable for weighting
prep_target_edulevel.RdCreates a standardized education level target variable for person-level weighting and expansion, using either PUMS or survey input. Use when preparing education level targets for synthetic population or survey analysis.
Arguments
- h_data
data.table. Household-level input (not used, included for interface consistency).
- p_data
data.table. Person-level input. Required columns:
For PUMS: must include
SERIALNO,SCHL_label.For survey: must include education column as specified in settings. Rows: one per person. Modified by reference: no (returns copy).
- target_name
character(1). Name of the target variable to create (default: "p_edulevel").
- codebook
data.table. Codebook for variable mapping; must include education value and label columns.
- settings
list. Project settings; must include
targets[[target_name]]withlevels.
Value
data.table. Copy of person-level input with new target variable column (target_name).
Columns: all original plus
target_name(character)Values: "some_college" or "no_college"
Row order preserved
Details
Detects input type (PUMS vs. survey) by presence of
SERIALNOcolumn.For PUMS:
Uses
SCHL_labelcolumn, converts to lowercase.Uses regex patterns:
str_detect(label, "some college")→ "some_college"str_detect(label, "degree")→ "some_college"else → "no_college"
For survey:
Uses codebook to map education values to labels.
Uses regex patterns:
label %like% "Some college"→ "some_college"label %like% "degree"→ "some_college"else → "no_college"
Checks that observed levels match expected target levels from settings.
Renames output column to
target_name(default:p_edulevel).Returns a copy of the input data.table with the new target variable.
Error handling: stops if levels do not match expected values.
See also
get_target_methods, prep_target_gender, prep_target_univstudent
Other target preparation:
get_target_methods(),
prep_target_adults(),
prep_target_age(),
prep_target_commutemode(),
prep_target_cross(),
prep_target_employment(),
prep_target_ethnicity(),
prep_target_gender(),
prep_target_h_size(),
prep_target_income(),
prep_target_kids(),
prep_target_race(),
prep_target_univstudent(),
prep_target_vehicles(),
prep_target_workers(),
prep_transit_target(),
prepare_targets(),
run_tabulate_method()