gpt4 book ai didi

python-3.x - Seaborn Boxplot - 轴颜色和宽度

转载 作者:行者123 更新时间:2023-12-01 21:56:28 25 4
gpt4 key购买 nike

我正在使用 seaborn 创建箱线图。如何修改轴线粗细和颜色?

[seaborn boxplots axis line thickness]

我不知道在我的代码中哪里可以解决这个问题。我需要更改 x 轴颜色和宽度以使其变蓝变粗....

谢谢

plt.figure()
fig = plt.figure(figsize=(45,35), dpi=150)
font_size_axes=128
label_font_size=128
ax = sns.boxplot(x=group, y=strain_lable[:], data=table,order=data_order, palette=my_pal, width=0.3,
fliersize=50, linewidth=12)

最佳答案

ax.spines['left'].set_linewidth(5)
ax.spines['left'].set_color('orange')

如果需要给所有的书脊上色,可以循环:

for _,s in ax.spines.items():
s.set_linewidth(5)
s.set_color('cyan')

如果您想对一堆绘图进行这些更改,您可能会考虑更改 rc 文件(参见 "Customizing matplotlib")。相关属性是 'axes.linewidth''axes.edgecolor'

关于python-3.x - Seaborn Boxplot - 轴颜色和宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56759449/

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