如果没有列标题,如何索引值?

时间:2019-10-21 00:57:28

标签: python pandas

我正在尝试从数据框中进行绘制,其中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

它仅返回“均值”

我应该怎么画?

1 个答案:

答案 0 :(得分:0)

删除x并设置use_index=1

df.plot(use_index=True, y='mean', kind='bar')