gpt4 book ai didi

python - Matplotlib 中的箱线图 : fill markers in the boxes

转载 作者:行者123 更新时间:2023-12-01 05:08:47 24 4
gpt4 key购买 nike

我想将标记填充到方框内,如下所示的箱线图图像。

我不知道如何实现这个。我在网上搜索了一下。有关于在框中填充颜色的帖子( http://matplotlib.org/examples/pylab_examples/boxplot_demo2.html ),但似乎没有关于填充标记的帖子。

Boxplot

最佳答案

应该比较简单。我拿了example并在创建多边形后立即添加一行 (set_hatch):

...
boxPolygon = Polygon(boxCoords, facecolor=boxColors[k])
boxPolygon.set_hatch('*')
ax1.add_patch(boxPolygon)
...

并删除了示例标记绘图命令。这就是我得到的:

enter image description here

有关 patch.set_hatch 的更多信息,请参阅 this example .

关于python - Matplotlib 中的箱线图 : fill markers in the boxes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24584034/

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