Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust 2020 Incomes to TAZ Controls #350

Closed
wants to merge 9 commits into from
Prev Previous commit
Next Next commit
Fixed outdated variable name
akselx committed Jan 3, 2024
commit 8bea125fae3e7f5908c0c69aefe57cfd135d8192
2 changes: 1 addition & 1 deletion baus/summaries/core_summaries.py
Original file line number Diff line number Diff line change
@@ -72,7 +72,7 @@ def adjust_initial_summary_year_incomes(households, initial_summary_year_taz_con

#TODO: consider updating just the records that were re-classified
# assign series to households df, to the income variable
households['income'] = out_inc.reset_index(0).income.sort_index()
households['income'] = updated_income.reset_index(0).income.sort_index()

# save the final table of households with updated incomes
orca.add_table("households", households)