Skip to content

Commit

Permalink
adjustment for report
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodi Yang committed Aug 20, 2024
1 parent 62a3d6c commit 27ebe87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion history/report_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ def validation_table(df_tax_data, df_cbo, category):
new_df = new_df.set_index("Year").round(1)
new_df = new_df.rename_axis(index=None).squeeze()
new_df.index = new_df.index.astype(str)
df_cbo = df_cbo.drop(columns=["2019", "2022"], axis=1, inplace=False)
df_cbo = df_cbo.drop(columns=["2022"], axis=1, inplace=False)
df_cbo = df_cbo.transpose()
df_cbo_sal = df_cbo.loc[:, df_cbo.columns.str.contains(category)].squeeze()
df_cbo_sal = df_cbo_sal.astype(float)
Expand Down

0 comments on commit 27ebe87

Please sign in to comment.