这是我的数据框架。
new_df = pd.DataFrame(columns=['A','B','C'], data = [[1,5,9],[2,6,8]])
我使用了 set_table_styles 来改变页眉的背景颜色并为单元格应用一些颜色条件。
new_df.style.set_table_styles(
[{'selector': 'tr:nth-of-type(odd)',
'props': [('background', '#eee')]},
{'selector': 'tr:nth-of-type(even)',
'props': [('background', 'white')]},
{'selector': 'th',
'props': [('background', 'blue'),
('color', 'white'),
('font-family', 'verdana')]},
{'selector': 'td',
'props': [('font-family', 'verdana')]},
]).hide_index().applymap(lambda x: 'background-color: red' if x>3 else 'background-color: green').to_excel('test.xlsx')
`
我完成了保存数据框架为test.xlsx文件,当我打开Excel文件时,我没有发现头的蓝色背景颜色。
请你帮我处理一下。