patch.rolling updates #296
Replies: 2 comments
-
Hey @ariellellouch,
I agree with you, but in designing the rolling functionality we wanted to maintain parity with Pandas and Xarray which do it this way. Rolling can also be more general for any kind of aggregations, and in some cases dealing with edge effects could require a lot of care so simply refusing to perform the aggregation is the most conservative option. That being said, I think implementing separate Gaussian or Savitsky-Golay filters in the filter module that behave the way you describe would be a good idea. Here is a link to the card you referenced. |
Beta Was this translation helpful? Give feedback.
-
Hey,
I don't like the smoothing function (rolling) changing the size of the output by Nan values. I also saw Derrick suggesting a similar change in projects.
I suggest either Gaussian or Savitsky-Golay filter and keep the original input size
Ariel
Beta Was this translation helpful? Give feedback.
All reactions