Skip to content
Advertisement

Coloring pivot table pandas dataframe

I have a pivot table created using pandas which looks like below:

JavaScript

I want to apply color for the entire column based on account name starts with. Ex: If account name starts with “AA” color=yellow, if starts with “AB” then color = red

How can I do that in python and save it into excel file? “Account” has been used as “columns” in pd.pivot_table function. Used below code to create the pivot table

JavaScript

Advertisement

Answer

You can create DataFrame of styles with Styler.apply and set rows by masks with loc:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement