Koalas: Support multi-level columns in pivot_table

Created on 26 Jun 2019  路  2Comments  路  Source: databricks/koalas

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 :

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

enhancement

Most helpful comment

@ueshin thanks for notifying me!
I'll see what I can do.

All 2 comments

Hi @garawalid,
We recently added a basic multi-index support in columns (#590).
Does that help you submit a PR?

@ueshin thanks for notifying me!
I'll see what I can do.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

sorenmc picture sorenmc  路  3Comments

timhughes picture timhughes  路  3Comments

ThiagoCM picture ThiagoCM  路  3Comments

ueshin picture ueshin  路  3Comments

mks2192 picture mks2192  路  4Comments