-
Notifications
You must be signed in to change notification settings - Fork 69
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
Adds method for splitting data into periods #528
base: master
Are you sure you want to change the base?
Adds method for splitting data into periods #528
Conversation
src/split.jl
Outdated
- `period::Function`: Function, e.g. `Dates.day` that is used to split the `data`. | ||
""" | ||
split(data::TimeSeries.TimeArray, period::Function) = map(i -> data[i], _split(data, period)) | ||
function _split(data::TimeSeries.TimeArray, period::Function) |
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.
well, I'm think about : does return an iterator better than just an Array?
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.
I now return an Iterators.map
@testset "split" begin | ||
|
||
|
||
@testset "find methods" begin |
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.
well, could you send the formatting patch as another PR?
(and maybe introduce some formatter in the standalone PR, e.g. https://github.com/julia-actions/julia-format)
This cause the patch not human readable.
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.
Co-authored-by: Iblis Lin <[email protected]>
No description provided.