-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Reimplement pandas deconstruction #1238
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we split the commits where we run black
into a separate PR? There's too much reformatting noise to discern the real changes as part of this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Checked out locally - changes, examples and reformatting look good. @texodus we should probably merge this first and rebase, or manually split it into two PRs just so that other PRs aren't mired in merge issues.
Thanks for fixing the datetime issue! It is only a fix for the Python widget side - for a more comprehensive fix we need to target the date parser in JS/C++ and make it more user-friendly.
14f4ddc
to
72721b5
Compare
aefe6ba
to
b3b15c2
Compare
Looks good! Thanks for the PR! |
Pivoted Pandas dataframe deconstruction is fundamentally broken in our current state, as exhibited by a few issues (#1122, #1123, etc). This PR rectifies that problem by better deconstructing pivoted data frames.
Also changed:
Notebooks and test cases for new pandas behavior updated/added.