-
Notifications
You must be signed in to change notification settings - Fork 19
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 dask_awkward.mean() needed #489
Comments
and it has been in the top level package for some time. https://github.com/dask-contrib/dask-awkward/blob/main/src/dask_awkward/__init__.py#L56 |
So this only supports axis that is not None or zero. What I am looking for (at least for now) is a mean functionality that that reduces over those axis. |
To get the mean, you of course need the sum and a count. I believe both of those are supported, so for axis=None/0, it could call those. |
Just confirmed with a small test code that Edit: With request from Nick Manganelli. I won't close this issue as others would also come to the same issue and quit, assuming |
Agree, this is a two-line fix when someone has the time. |
Dear Developers.
Hello, I am one of the graduate students working with dask_awkward within coffea 2023 pacakage, and it seems like support for
dask_awkward,mean()
function is missing. What I need for my workflow is dask_awkward implementation of mean() function onto a 1 dimensional array, which means support fordask_awkward,mean()
either in theaxis=None
oraxis=0
, such that something like this is possible:Please let me know if you have any questions or issues!
The text was updated successfully, but these errors were encountered: