Skip to content

Commit

Permalink
fix missing name parameter in calendar_heatmap (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
gutjuri authored Mar 10, 2024
1 parent b7d0ea6 commit 08de7c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chatminer/visualizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def calendar_heatmap(
)

df_joined = (
df_calendar.to_frame()
df_calendar.to_frame(name="date")
.join(df_day, on="date", how="left")
.fill_null(strategy="zero")
)
Expand Down

0 comments on commit 08de7c3

Please sign in to comment.