gpt4 book ai didi

python - 删除 matplotlib boxplot 传单的边缘宽度

转载 作者:太空宇宙 更新时间:2023-11-03 17:26:46 26 4
gpt4 key购买 nike

在下面的箱线图中,我想删除传单的黑色边缘(粉红色圆圈)。然而,它似乎不起作用。这是我的代码:

bp = plt.boxplot(boxes)
for flier in bp['fliers']:
flier.set(marker = 'o', color = '#e7298a', alpha = 0.5, linewidth = 0.0)

enter image description here

最佳答案

您是否尝试过在生成绘图时设置样式?

flierprops = dict(marker='o', markerfacecolor='green', markersize=12, linestyle='none')

或(均未经测试)

flierprops = dict(marker='o', fillstyle='full', markeredecolor='red', markeredgewidth=0.0)

然后

boxplot(data, flierprops=flierprops)

示例来自:http://matplotlib.org/examples/statistics/boxplot_demo.html

关于python - 删除 matplotlib boxplot 传单的边缘宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32443015/

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