Skip to content

Commit

Permalink
remove testing print
Browse files Browse the repository at this point in the history
  • Loading branch information
yuqiww committed Nov 25, 2020
1 parent 60fa396 commit 3f5d0b5
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions baus/summaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -1524,14 +1524,6 @@ def count_acres_with_mask(mask):
taz_df = add_population(taz_df, year, rc)
taz_df.totpop = taz_df.hhpop + taz_df.gqpop
taz_df = add_employment(taz_df, year, rc)
taz_df_pop_na = taz_df.loc[taz_df.totpop.isnull()]
print(taz_df_pop_na)
taz_df_emp_na = taz_df.loc[taz_df.totemp.isnull()]
print(taz_df_emp_na)
taz_df_acre_na = taz_df.loc[taz_df.totacre.isnull()]
print(taz_df_acre_na)
taz_df_zero_emp = taz_df.loc[taz_df.totemp == 0]
print(taz_df_zero_emp)
taz_df["density_pop"] = taz_df.totpop / taz_df.totacre
taz_df["density_pop"] = taz_df["density_pop"].fillna(0)
taz_df["density_emp"] = (2.5 * taz_df.totemp) / taz_df.totacre
Expand Down

0 comments on commit 3f5d0b5

Please sign in to comment.