-
Notifications
You must be signed in to change notification settings - Fork 7
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
support for align
?
#38
Comments
To clarify: I did find zoo's |
Thanks for the feedback. I currently don't have plans to support it but we can see whether there's demand or collaborators that want to help. |
for align left you can reverse your input vector |
I’d love to see alignment too. :-) A common use of rolling medians is as a smoothing filter in time series. There it's usually expected that the filter is centered to avoid a time shift. For left, it could just be running the right alignment on the reversed vector, and returning the re-reversed vector as suggested by @jangorecki. For center it could maybe be done simply by shifting the returned vector by width/2? |
You may want to check https://github.com/Rdatatable/data.table/tree/rollmedian |
In #37 you briefly discuss that the package currently only supports zoo's
align = "right"
option. Are there any plans to supportalign = "center"
? The added value for me would be that this package allows formin_obs
, which I couldn't figure out for zoo's implementation.The text was updated successfully, but these errors were encountered: