Replies: 1 comment 2 replies
-
I would love to see some sort of functionality for sliding windows or timeseries to calculate things out of the box. I feel like the finance industry can benefit quite a lot from delta lake and daft but tasks such as calculating OHLC can be a bit more complex than other DataFrame libraries. Maybe it's me that I'm a relatively new user, but I found it extremely hard to calculate the opening price and close price for a time series since there's no methods to get the first or last element when aggregating data, just min and max. Where as with pandas you simply resample the data on the timestamp and aggregate data. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Summary
Many timeseries-type datasets benefit from a rolling/windowing API, where aggregations can be performed based on a specified window.
This feature lacks a proposed API and implementation, but please upvote, comment and share your use-cases if you would like to see this in Daft.
Beta Was this translation helpful? Give feedback.
All reactions