Skip to content

Instantly share code, notes, and snippets.

@yhoon3002
Created May 30, 2024 10:26
# 행 인덱스 변경
DataFrame 객체.rename(index={기존 인덱스 : 새로운 인덱스, ...})
# 열 이름 변경
DataFrame 객체.rename(columns={기존 이름 : 새로운 이름}, ...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment