-
Notifications
You must be signed in to change notification settings - Fork 590
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
ENH: Fix UDF bugs in the pandas backend #1637
Conversation
|
Flake8 misses configparser on py27. |
|
Something might be buggy in the installation process because that line of code has been in flake8 for ages. Also, configparser is installed on the machine. I'll look into it. |
|
Looks like it might be fixed conda-forge/configparser-feedstock#16 |
a35641e
to
f5d0cfa
Compare
|
AFAICT pandas udf module does two things: function style operation definition and its mapping to multipledispatch signatures. I think the first one should be factored out to |
Indeed.
I'll make an issue to discuss the design here. Do you want to take the lead on designing/implementing that? |
|
@cpcloud sure yes! |
0536f15
to
5956764
Compare
a73b0bc
to
33c3d54
Compare
…heir signatures match input_type
Also adds support for non-aggregate analytic functions
Closes #1633