Skip to content

Commit

Permalink
specify join type
Browse files Browse the repository at this point in the history
  • Loading branch information
AFg6K7h4fhy2 committed Oct 11, 2024
1 parent 957bca5 commit 0511527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forecasttools/daily_to_epiweekly.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def daily_to_epiweekly(
if strict:
valid_groups = n_elements.filter(pl.col("n_elements") == 7)
forecast_df = forecast_df.join(
valid_groups.select(group_cols), on=group_cols
valid_groups.select(group_cols), on=group_cols, how="inner"
)
# aggregate; sum values in the specified value_col
df = (
Expand Down

0 comments on commit 0511527

Please sign in to comment.