给定这个数据框:
xlabel = list('xxxxxxyyyyyyzzzzzz')
fill= list('abc'*6)
val = np.random.rand(18)
df = pd.DataFrame({ 'xlabel':xlabel, 'fill':fill, 'val':val})
这就是我的目标: http: //matplotlib.org/mpl_examples/pylab_examples/barchart_demo.png
应用于我的示例,Group
将是x
,y
并且z
,Gender
将是a
,b
并且c
,并且Scores
将是val
。
我知道在 pandas 中,与 matplotlib 的绘图集成仍在进行中,所以可以直接在 matplotlib 中进行吗?