当我尝试从数据框中删除几列时,我收到了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
答案 0 :(得分:1)
这样做:
df.drop('Link ', axis=1)
列名为'link '
。它最后有一个空间