Concept Flow - rolling() for moving windows
Start with Data Series
Define window size
Slide window over data
Apply aggregation function
Collect results for each window
Output rolling result series
The rolling() function slides a fixed-size window over data, applies a function to each window, and collects the results.