Skip to content

Commit

Permalink
Another _append
Browse files Browse the repository at this point in the history
  • Loading branch information
doprdele committed Mar 18, 2024
1 parent fad50f3 commit fb6774b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion css.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def aggregate_lab(path):
percentage = sum_other["percentage"]

df_dc = df_dc[df_dc["Department/Concentration"] != "Other"]
df_dc = df_dc.append(
df_dc = df_dc._append(
pd.DataFrame({"Department/Concentration": "Other", "count": count, "percentage": percentage}, index=[100]))

df_dc["period"] = period
Expand Down

0 comments on commit fb6774b

Please sign in to comment.