gpt4 book ai didi

python - 使用python中的 Pandas 将背景颜色应用于excel中的一行

转载 作者:行者123 更新时间:2023-12-04 21:42:39 28 4
gpt4 key购买 nike

我有一个简单的测试表,我想使用 pandas 为标题行提供灰色背景色。更改后,将结果另存为新文件。
enter image description here
我尝试使用以下代码。

df_test = pd.read_excel(r'...\test.xlsx')
df_test = df_test.loc[1:1].style.apply('background-color: grey', axis = 1)
df_test.to_excel(r'...\test_1.xlsx', sheet_name='asdf', index = False)
但我只收到 AttributeError: 'background-color : grey' is not a valid function for 'DataFrame' object .我已经尝试了其他一些变体,但无济于事。

最佳答案

您可以使用 Styler.applymap_index

def bg_header(x):
return "background-color: grey"

df.style.applymap_index(bg_header, axis=1).to_excel('output.xlsx', index=False)
注意:您需要 Pandas>=1.4.0 enter image description here

关于python - 使用python中的 Pandas 将背景颜色应用于excel中的一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72096940/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com