Skip to content

Commit

Permalink
No more warning with resample and using min VS T #85
Browse files Browse the repository at this point in the history
Signed-off-by: Armand <[email protected]>
  • Loading branch information
armgilles committed Sep 17, 2024
1 parent cc0f7eb commit 10d229c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vcub_keeper/production/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def transform_json_station_data_to_df(station_json):
station_df_resample = (
station_df.groupby("station_id")
.resample(
"10T",
"10min",
label="right",
)
.agg(
Expand Down Expand Up @@ -287,7 +287,7 @@ def transform_json_api_bdx_station_data_to_df(station_json):
station_df_resample = (
station_df.groupby("station_id")
.resample(
"10T",
"10min",
label="right",
)
.agg(
Expand Down

0 comments on commit 10d229c

Please sign in to comment.