我正在使用 python 2.7.3 和 Pandas 版本 0.12.0。
我想删除带有 NaN 索引的行,以便我只有有效的 site_id 值。
print df.head()
special_name
site_id
NaN Banana
OMG Apple
df.drop(df.index[0])
TypeError: 'NoneType' object is not iterable
如果我尝试删除一个范围,如下所示:
df.drop(df.index[0:1])
我收到此错误:
AttributeError: 'DataFrame' object has no attribute 'special_name'