次のようなデータフレームがあります。
In [10]: df
Out[10]:
Column 1
foo
Apples 1
Oranges 2
Puppies 3
Ducks 4
そのデータフレームから削除するindex name
foo
には? 目的の出力は次のようになります。
In [10]: df
Out[10]:
Column 1
Apples 1
Oranges 2
Puppies 3
Ducks 4