-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add moving average plot #521
Comments
@lars-reimann But it's considered unstable, so should I use this function, or write an own rolling average? |
Use the polars version. If they change it, we change the implementation of our wrapper. |
Should there also be an moving average function for a Column, which calculates the moving average and returns it as a column. |
Maybe later, you don't have to worry about that. |
Is your feature request related to a problem?
The user should be able to see the moving average in context with the time series.
Desired solution
The user should just call something like this:
ts.plot_movingaverage()
When implementing this, the pandas
df.roll
-function could be pretty useful.https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.rolling.html
The text was updated successfully, but these errors were encountered: