-
Notifications
You must be signed in to change notification settings - Fork 407
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
Pivot operation allows selection of single column #237
Comments
@mswastik I can't remember a specific reason for why I'm only using |
Thanks, constructing multiple column names is already there in JavaScript when using group by operation, you just need to extend it for pivot operation also and replace |
@aschonfeld Also when there is duplicate column or index in the pivot, pandas shows error but pivot_table has aggregations to select just one of them. |
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations * global & instance-level flag to turn off cell editing * added the ability to upload CSVs * upgraded prismjs * #234: update to line animations so that you can lock axes and highlight last point * #233: add candlestick charts * #241: total counts vs. count (non-nan) in describe * #240: force convert to float * #239: converting mixed columns * #237: updated "Pivot" reshaper to always using pivot_table * #236: "inplace" & "drop_index" parameters for memory optimization and parquet loader
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations * global & instance-level flag to turn off cell editing * added the ability to upload CSVs * upgraded prismjs * #234: update to line animations so that you can lock axes and highlight last point * #233: add candlestick charts * #241: total counts vs. count (non-nan) in describe * #240: force convert to float * #239: converting mixed columns * #237: updated "Pivot" reshaper to always using pivot_table * #236: "inplace" & "drop_index" parameters for memory optimization and parquet loader
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations * global & instance-level flag to turn off cell editing * added the ability to upload CSVs * upgraded prismjs * #234: update to line animations so that you can lock axes and highlight last point * #233: add candlestick charts * #241: total counts vs. count (non-nan) in describe * #240: force convert to float * #239: converting mixed columns * #237: updated "Pivot" reshaper to always using pivot_table * #236: "inplace" & "drop_index" parameters for memory optimization and parquet loader
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations * global & instance-level flag to turn off cell editing * added the ability to upload CSVs * upgraded prismjs * #234: update to line animations so that you can lock axes and highlight last point * #233: add candlestick charts * #241: total counts vs. count (non-nan) in describe * #240: force convert to float * #239: converting mixed columns * #237: updated "Pivot" reshaper to always using pivot_table * #236: "inplace" & "drop_index" parameters for memory optimization and parquet loader
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations * global & instance-level flag to turn off cell editing * added the ability to upload CSVs * upgraded prismjs * #234: update to line animations so that you can lock axes and highlight last point * #233: add candlestick charts * #241: total counts vs. count (non-nan) in describe * #240: force convert to float * #239: converting mixed columns * #237: updated "Pivot" reshaper to always using pivot_table * #236: "inplace" & "drop_index" parameters for memory optimization and parquet loader
* #231: "Lock Zoom" button on 3D Scatter & Surface charts for locking camera on animations * global & instance-level flag to turn off cell editing * added the ability to upload CSVs * upgraded prismjs * #234: update to line animations so that you can lock axes and highlight last point * #233: add candlestick charts * #241: total counts vs. count (non-nan) in describe * #240: force convert to float * #239: converting mixed columns * #237: updated "Pivot" reshaper to always using pivot_table * #236: "inplace" & "drop_index" parameters for memory optimization and parquet loader
@mswastik I've just released version 1.13.0 which includes this change. Let me know how it goes 🤞 |
Yes its working great, thanks a lot! |
Pivot operation in summarize data allow selection of single row and column even though pandas pivot_table function allows selection of multiple rows and column.
Why not migrate from pandas pivot function to pivot_table function?
The text was updated successfully, but these errors were encountered: