반응형
reset_index
행 인덱스를 원래 값에서 0,1,2와 같이 초기화를 할 수 있다.
원래 있던 인덱스는 열로 들어간다.
행을 열로 바꿀 때 쓴다.
import pandas as pd
df = pd.DataFrame([[0, 1, 2], [3, 4, 5]], index=["r0", "r1"], columns=["c0", "c1", "c2"])
print(df)
출력
c0 c1 c2
r0 0 1 2
r1 3 4 5
df1 = df.reset_index()
print(df1)
출력
index c0 c1 c2
0 r0 0 1 2
1 r1 3 4 5
반응형
'개발 Tools > 파이썬_Pandas & Numpy' 카테고리의 다른 글
파이썬 Pandas info (요약 정보) (0) | 2023.02.23 |
---|---|
파이썬 Pandas shape (행열 꼴) (0) | 2023.02.23 |
파이썬 Pandas reindex (행 지정, 행 변경) (0) | 2023.02.23 |
파이썬 Pandas set_index ( 행열 지정, 행 변경) (0) | 2023.02.21 |
파이썬 Pandas loc, iloc ( 행열 추출, 특정 값 추출 ) (0) | 2023.02.21 |
댓글