lazarljubenovic / jupiterate

1 stars 0 forks source link

Add a sliding/rolling window operator #17

Closed lazarljubenovic closed 1 year ago

lazarljubenovic commented 1 year ago

A generalization of pairwise. Needs a cyclic variant as well.

lazarljubenovic commented 1 year ago

Researched a bit; apparently "sliding window" is a better term here as "rolling window" suggests some sort of statistical analysis (the most popular application being computing a rolling average).

Also realized that you could specify a step apart from the window size -- although I'm not sure how that should behave for the cyclic variant, so might be best to avoid there (or avoid at all for now).