gpt4 book ai didi

python - Matplotlib 通过颜色或形状区分均值和中值

转载 作者:行者123 更新时间:2023-11-28 21:11:09 24 4
gpt4 key购买 nike

我使用的是 matplotlib 1.4.3 版,我想制作一个 Violinplot,我想显示均值和中位数,这很容易做到,但我想标记均值和中位数,以便轻松区分它们,通过更改其中一个的颜色和/或形状,但我在文档中看不到任何允许这样做的内容。

任何帮助将不胜感激。

violinplot(x, showmeans=True, showmedians=False, widths=1.0, showextrema=False)

带有均值和中位数的 Violinplot 示例:

最佳答案

提示:在查看方法的文档字符串时,千万不要错过 Returns 部分。

data = np.random.weibull(1.5, size=(1000, 3))
r = plt.violinplot(dataset=data, showmeans=True, showmedians=True,
widths=1.0, showextrema=False)
r['cmeans'].set_color('b')
r['cmedians'].set_color('g')

enter image description here

关于python - Matplotlib 通过颜色或形状区分均值和中值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35711151/

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