Python 2.7.3 と Pandas バージョン 0.12.0 を使用しています。
有効な site_id 値のみを持つように、NaN インデックスを持つ行を削除したいと考えています。
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'