-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: use size attribute (not method call) #7089
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
Conversation
@jreback if u want to check this out... not exactly sure where the upcast issue is ... i construct |
|
The problem is here: https://github.com/pydata/pandas/blob/master/pandas/core/groupby.py#L1398 when evaluting the object type, a float result to hold the data is created (and not object type). |
This patch fixes. Note that I still don't think we are testing what happens if the cython aggregation fails (but I am not sure what triggers it to fail anyhow, or if their are ANY tests for a cython function failling back).
|
@jreback i applied the patch. so this works on windows? |
yep; I think the problem is that |
BUG: use size attribute (not method call)
thanks! will let you know of any other windows issues |
ok i'll keep that in mind when doing other stuff with |
ok...passes now on windows thanks! |
xref: #7055