DEV Community

Nilotpal Choudhury
Nilotpal Choudhury

Posted on • Updated on

Answer: How to read pivot table from excel document in python pandas?

pandas.pivot_table is there to support data analysis and helps you to create pivot tables similar to excel, not to read excel pivot tables.

Create a spreadsheet-style pivot table as a DataFrame. The levels in the pivot table will be stored in MultiIndex objects (hierarchical indexes) on the index and columns…

Top comments (0)