-
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
all(::TimeSeries)? #356
Comments
I agree with that we should support more reduction functions like |
When there is only one column, I think the answer is quite obvious (take the |
First, for your need, I think we need to revoke the deprecation warning of Second, about |
you might want to try out #359 |
Following a recent trend of addition of methods (like #338), would something like
all()
be interesting? I am currently comparing two time series, and a simple==
generates a warning:I have thus switched to
==.
, and I have a time series of Booleans, instead of a single Boolean. I would likeall(ta)
to returnall(ta.value)
when that makes sense (I am only thinking of having one Boolean column and no other column). Then,any()
could be implemented similarly (and maybe others).This is more a request for comments; I can provide an implementation if you think this is worthwhile.
The text was updated successfully, but these errors were encountered: