我正在尝试从数据框中进行绘制,其中X为布尔值,y为均值。
df.plot(x = 'true/false', y = 'mean', kind = 'bar')
但是,它会返回KeyError'true / false'
mean
true/false
1 0.6
0 0.7
然后我尝试了
df.column
它仅返回“均值”
我应该怎么画?
答案 0 :(得分:0)
删除x
并设置use_index=1
:
df.plot(use_index=True, y='mean', kind='bar')