gpt4 book ai didi

python - Pandas Excelwriter 发散颜色数据栏

转载 作者:行者123 更新时间:2023-11-28 18:15:43 26 4
gpt4 key购买 nike

我在使用 pandas/excelwriter 有条件地格式化我的 excel 文件方面相当成功

但是,我在创建不同颜色的数据条时遇到了问题,就像可以在 excel 中创建的数据条一样:

enter image description here

我尝试设置最小和最大颜色:

worksheet.conditional_format('G2:I80'{'type':'data_bar','min_color':'red','max_color':'green'})

但是结果是这样的:

enter image description here

最佳答案

这在 XlsxWriter 1.0.4 版中是可能的。查看数据栏 Conditional Formatting Options .

对于你的情况,你可以这样做:

worksheet.conditional_format('G2:I80',
{'type': 'data_bar',
'min_color': 'red',
'max_color':'green',
'data_bar_2010': True,
})

关于python - Pandas Excelwriter 发散颜色数据栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48527270/

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