We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This issue tracks DataFrame.pivot_table (#386) The actual implementation can handle values as a list but it's disabled right now with this condition :
DataFrame.pivot_table
values
if isinstance(values, list) and len(values) > 1: raise NotImplementedError('Values as list of columns is not implemented yet.')
We need to implement multi-level columns before updating pivot_table
pivot_table
The text was updated successfully, but these errors were encountered:
Hi @garawalid, We recently added a basic multi-index support in columns (#590). Does that help you submit a PR?
Sorry, something went wrong.
@ueshin thanks for notifying me! I'll see what I can do.
Update DataFrame.pivot_table() (#635)
b7fc773
Resolves #511, #636. In the test, the `kdf` is converted to Pandas DataFrame in order to use `sort_index()`. I'll update the test once #634 resolved.
Successfully merging a pull request may close this issue.
This issue tracks
DataFrame.pivot_table
(#386)The actual implementation can handle
values
as a list but it's disabled right now with this condition :We need to implement multi-level columns before updating
pivot_table
The text was updated successfully, but these errors were encountered: