Python条形图中的斜条

时间:2019-06-13 09:11:31

标签: python matplotlib

我有一个用python创建的简单条形图,我只想使条形倾斜,不应更改x和y轴,但不知道该怎么做。这样的财产可能吗?

import matplotlib.pyplot as plt
plt.bar(y_pos, performance, width, fill=False, ,align='center', linewidth = linewidth, alpha=0.6, color = 'gray')
plt.xticks(y_pos, words)
plt.yticks([])

1 个答案:

答案 0 :(得分:0)

这是您想要获得的吗?

import math
def tilt_rectangle(rect, angle=math.pi/4):
    verts = p.axes.transData.inverted().transform(rect.get_verts())
    verts[2,0] += p.get_height()*math.tan(angle)
    verts[3,0] += p.get_height()*math.tan(angle)
    poly = matplotlib.patches.Polygon(verts)
    p.axes.add_artist(poly)
    poly.update_from(rect)
    return poly


x = np.arange(4)
y = np.random.random(size=(4,))

fig, ax = plt.subplots()
b = plt.bar(x, y)
for p in b.patches:
    poly = tilt_rectangle(p)
    poly.set_clip_on(False)
    p.remove()

enter image description here