值错误:[ValueError:标签['链接']未包含在轴中]

时间:2017-07-29 22:47:46

标签: python

当我尝试从数据框中删除几列时,我收到了Value错误。

--> df.columns --
Index(['Name of School', 'Elementary, Middle, or High School',
       'Street Address', 'ZIP Code', 'Link ', 'Healthy Schools Certified?']

--> df.drop('Link', axis=1)

错误:

ValueError: labels ['Link'] not contained in axis

1 个答案:

答案 0 :(得分:1)

这样做:

df.drop('Link ', axis=1)

列名为'link '。它最后有一个空间