This repository was archived by the owner on Mar 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Creating Custom Panel
Mark Jayson edited this page Feb 10, 2026
·
5 revisions
Use this guide to export only variables you need.
Pick one input panel:
- Analysis-ready (recommended):
Panels/panel_wide_analysis_2004_2023.parquet - Broad full panel (includes 2024):
Panels/2004_2024_IPEDS_clean_Panel_DS.parquet
Before selecting variables, check the dictionary to confirm exact varName, meaning, and year coverage.
- Full workbook:
Variable references/panel_var_reference.xlsx - Build script:
Variable references/panel_var_reference.py
export IPEDS_ROOT="/path/to/IPEDS_Paneling"
python3 "$IPEDS_ROOT/Variable references/panel_var_reference.py"- File-based:
Customize_Panel/selectedvars.txt(included in this repo) - Inline list:
--vars "INSTNM,SECTOR,TUITION1,PELL_RECP"
UNITID and year are always included automatically.
export IPEDS_ROOT="/path/to/IPEDS_Paneling"
python3 Scripts/06_build_custom_panel.py \
--input "$IPEDS_ROOT/Panels/panel_wide_analysis_2004_2023.parquet" \
--vars-file "$IPEDS_ROOT/Customize_Panel/selectedvars.txt" \
--years "2004:2023" \
--format parquet \
--output "$IPEDS_ROOT/Panels/custom_panel_2004_2023.parquet"export IPEDS_ROOT="/path/to/IPEDS_Paneling"
python3 Scripts/06_build_custom_panel.py \
--input "$IPEDS_ROOT/Panels/panel_wide_analysis_2004_2023.parquet" \
--vars-file "$IPEDS_ROOT/Customize_Panel/selectedvars.txt" \
--years "2004:2023" \
--format csv \
--output "$IPEDS_ROOT/Panels/custom_panel_2004_2023.csv"Missing variables: use --strict to fail immediately and identify bad names.
Wrong path: confirm IPEDS_ROOT points to your local project/data root.