希望这是一个简单的问题 - 如何在用熊猫绘图时控制条宽和间隙?
Full code is here,转发如下:
df = pd.DataFrame({
'person':[x*3 for x in list('ABCDEF')],
'score1':np.random.randn(6),
'score2':np.random.randn(6),
'score3':np.random.randn(6),
'score4':np.random.randn(6),
'score5':np.random.randn(6)
})
print(df)
ax = df.set_index(['person']).plot(kind='barh')
ax.invert_yaxis()
结果条宽度太薄,间隙太宽,我该如何修复?谢谢。