You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add a 'rolling' formatoption to calculate the rolling mean for line plots
Reason
For wiggly lines, it is often not very useful to display them as is but rather to display the rolling mean.
Detailed explanation
Of course one can always do da.rolling(50).mean().psy.plot(...) but since the window (50) might vary, it would be a useful feature to add a formatoption to the psy_simple.plotters.LinePlotter for it. This should then have START priority.
The text was updated successfully, but these errors were encountered:
Summary
add a 'rolling' formatoption to calculate the rolling mean for line plots
Reason
For wiggly lines, it is often not very useful to display them as is but rather to display the rolling mean.
Detailed explanation
Of course one can always do
da.rolling(50).mean().psy.plot(...)
but since thewindow
(50) might vary, it would be a useful feature to add a formatoption to thepsy_simple.plotters.LinePlotter
for it. This should then haveSTART
priority.The text was updated successfully, but these errors were encountered: