-
Notifications
You must be signed in to change notification settings - Fork 121
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
Added Series.ewm_std/2 and Series.ewm_var/2 #778
Conversation
lib/explorer/backend/lazy_series.ex
Outdated
@@ -73,6 +73,8 @@ defmodule Explorer.Backend.LazySeries do | |||
window_sum: 5, | |||
window_standard_deviation: 5, | |||
ewm_mean: 5, | |||
ewm_std: 6, | |||
ewm_var: 6, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We call these things variance
and standard_deviation
below. Should we rename these two to match them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The function names were copied as is from polars
. We should rename to match the convention used in Explorer
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great to me, I have added only one suggestion to the name (which can likely be addressed with a search+replace).
The functions have been renamed to |
💚 💙 💜 💛 ❤️ |
Closes #776.