Calculating the hourly total with window functions
Continuing with the London bike-sharing data, you want to spot unusual demand patterns like events or disruptions. To do this, compare each hour's rentals to its typical total across all days. Window functions let you add group statistics while keeping every row intact.
polars is loaded as pl. The DataFrame bikes is available with columns time, rentals, temp, and hour.
Cet exercice fait partie du cours
Data Transformation with Polars
Instructions
- Calculate the sum of
rentalsgrouped byhourand name the columnhourly_total.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Add the hourly total using a window function
bikes.with_columns(
pl.col("rentals").____().over("____").alias("____")
)