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
The following test case shows that mean and std are well-behaved when using groupby().agg() on a dataframe full of floats. Not so when the dataframe is made of Quantities (which can be made to work for mean but not so for std).
This commit bears directly on the above problem, but was committed after the latest (0.2) release. Time for a 0.3 release?
I realize (from other discussions) that there's still a question as to what to do with std as the unit type is a delta of a base, not a base type. The aforementioned patch does not try to deal with that.
The following test case shows that
mean
andstd
are well-behaved when using groupby().agg() on a dataframe full of floats. Not so when the dataframe is made of Quantities (which can be made to work formean
but not so forstd
).Here's the output showing correct
mean
behavior and badstd
behavior:The text was updated successfully, but these errors were encountered: