📝파이썬 판다스 데이터 프레임 인덱스 변경, 초기화
df.set_index('컬럼') : 기존에 있는 컬럼의 값을 인덱스로 만든다
※ 뒤에 써준 inplace=True는 메모리 자체를 변경한다는 뜻
>>> df.set_index('컬럼')
# 메모리 자체를 변경할시
>>> df.set_index('컬럼', inplace=True)
df.reset_index() : 인덱스를 원래대로(컴퓨터가 매기는 인덱스) 초기화 시킨다
>>> df.reset_index()
'Python > Pandas' 카테고리의 다른 글
[Python] Pandas DataFrame 행, 열 삭제하기 drop (0) | 2022.11.25 |
---|---|
[Python] Pandas DataFrame 인덱스, 컬럼명 변경하기 rename() (0) | 2022.11.25 |
[Python] Pandas DataFrame 데이터 확인하기 head(), tail(), describe(), shape, columns, info() (0) | 2022.11.25 |
[Python] Pandas DataFrame 유일한 값 찾기 unique(), nunique(), value_counts() (0) | 2022.11.25 |
[Python] Pandas DataFrame 합치기 pd.concat(), pd.merge() (0) | 2022.11.25 |
댓글