Calculating a rolling sum
Continuing with the London bike-sharing data, hourly rental counts can jump dramatically from one hour to the next, making it hard to spot trends. Rolling statistics smooth out this noise by summing over a window of consecutive rows.
polars is loaded as pl. The DataFrame bikes is available with columns time, rentals, and temp.
本练习是课程的一部分
Data Transformation with Polars
练习说明
- Add a column
rolling_totalwith the 3-hour rolling sum ofrentals.
交互式实操练习
通过完成这段示例代码来试试这个练习。
# Add a 3-hour rolling sum of rentals
bikes.with_columns(
pl.col("rentals").____(window_size=____).alias("____")
)