如何在matplotlib python上填充断条?

2024-10-05 14:23:34 发布

您现在位置:Python中文网/ 问答频道 /正文

我想在matplotlib的break_barh中使用hatching。我想要的是为不同的颜色在情节上有不同的图案。我试着把它作为字典来添加,但没有成功,有人知道正确的方法是什么吗? 这是matplotlib网站上的示例代码。在

“” 绘制一个“断开”的水平条图,即有间隙的水平条 “”

import matplotlib.pyplot as plt

fig, ax = plt.subplots()
ax.broken_barh([(110, 30), (150, 10)], (10, 9), facecolors='blue', hatch='o')
ax.broken_barh([(10, 50), (100, 20), (130, 10)], (20, 9),
               facecolors=('red', 'yellow', 'green'), hatch='//')
ax.set_ylim(5, 35)
ax.set_xlim(0, 200)
ax.set_xlabel('seconds since start')
ax.set_yticks([15, 25])
ax.set_yticklabels(['Bill', 'Jim'])
ax.grid(True)
ax.annotate('race interrupted', (61, 25),
            xytext=(0.8, 0.9), textcoords='axes fraction',
            arrowprops=dict(facecolor='black', shrink=0.05),
            fontsize=16,
            horizontalalignment='right', verticalalignment='top')

plt.show()

我想为不同的颜色使用不同的图案填充,但这是不可能的:
I want to have different hatching for different color, but it is not possible

如果有人能给我一个提示,我会很感激的?在


Tags: 字典matplotlib颜色水平pltax图案set
1条回答
网友
1楼 · 发布于 2024-10-05 14:23:34

broken_barh不允许设置不同的图案填充。但是,由于断条只是多个单条,所以可以用不同的图案填充来绘制单条。在

import matplotlib.pyplot as plt

def brokenhatchbar(xs, y, ax=None, **kw):
    if not ax: ax=plt.gca()
    hatches = kw.pop("hatch", [None]*len(xs))
    facecolors = kw.pop("facecolors", [None]*len(xs))
    edgecolors = kw.pop("edgecolors", [None]*len(xs))
    for i, x in enumerate(xs):
        ax.barh(bottom=y[0], width=x[1], height=y[1], left=x[0],
                facecolor=facecolors[i], edgecolor=edgecolors[i], hatch=hatches[i])

fig, ax = plt.subplots()
brokenhatchbar([(110, 30), (150, 10)], (10, 9), facecolors=['blue','blue'], hatch=['o','////'])
brokenhatchbar([(10, 50), (100, 20), (130, 10)], (20, 9),
               facecolors=('red', 'yellow', 'green'), hatch=('//', 'o', '+'))
ax.set_ylim(5, 35)
ax.set_xlim(0, 200)
ax.set_xlabel('seconds since start')

ax.grid(True)

plt.show()

enter image description here

相关问题 更多 >