You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optimize min_count when expected_groups is not provided. (#236)
* Optimize min_count for all numpy
For pure numpy arrays, min_count=1 (xarray default) is the same
as min_count=None, with the right fill_value. This avoids
one useless pass over the data, and one useless copy.
We need to always accumulate count with dask, to make sure we
get the right values at the end.
* Better?
0 commit comments