programing tip

Pandas에서 색인 이름 제거

itbloger 2020. 12. 8. 07:48
반응형

Pandas에서 색인 이름 제거


다음과 같은 데이터 프레임이 있습니다.

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

사용하다 del df.index.name

In [16]: df
Out[16]:
         Column 1
foo
Apples          1
Oranges         2
Puppies         3
Ducks           4

In [17]: del df.index.name

In [18]: df
Out[18]:
         Column 1
Apples          1
Oranges         2
Puppies         3
Ducks           4

또는 당신은 단지 할당 할 수 있습니다 None받는 index.name속성 :

In [125]:

df.index.name = None
df
Out[125]:
         Column 1

Apples          1
Oranges         2
Puppies         3
Ducks           4

버전에서 0.18.0다음을 사용할 수 있습니다 rename_axis.

print df
         Column 1
foo              
Apples          1
Oranges         2
Puppies         3
Ducks           4

print df.index.name
foo


print df.rename_axis(None)
         Column 1
Apples          1
Oranges         2
Puppies         3
Ducks           4

print df.rename_axis(None).index.name
None

# To modify the DataFrame itself:
df.rename_axis(None, inplace=True)
print df.index.name
None

다음 코드 줄을 사용하여 인덱스 이름삭제할 수 있습니다 .

del df.index.name 

참고 URL : https://stackoverflow.com/questions/29765548/remove-index-name-in-pandas

반응형