-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
ohlc not available for groupby/etc #6594
Comments
hmm I think this is only valid as a resample method |
close or leave open? (Do we want a sep method... someday ? - not sure it's needed tbh) I added the resample version to sub-selection tests, so we're good on that front. |
I would blacklist it to get the correct error message |
I think this should have a better error message |
We could just create the method and raise saying to use resample(how="ohlc")... or better yet just do the resample? |
I don't think you should do the resample, but raising a more helpful message is good. |
this totally works now (need slight change to syntax as the above is not valid), needing testing/validation
|
closing as this is already supported with a timegrouper / resample. |
Was this available at some stage (it's looking in
self._cython_functions
for it rather than just saying no dice with a plain ol' AttributeError):Can do atm using
g.resample('D', how='ohlc')
.The text was updated successfully, but these errors were encountered: