Pandas DataFrame 제거 인덱스
이 튜토리얼은 Pandas DataFrame의 인덱스를 제거하는 방법을 설명합니다. 아래에 표시된 DataFrame을 사용하여 색인을 제거하는 방법을 보여 드리겠습니다. import pandas as pd my_df = pd.DataFrame( { "Person": ["Alice", "Steven", "Neesham", "Chris", "Alice"], "City": ["Berlin", "Montreal", "Toronto", "Rome", "Munich"], "Mother Tongue": ["German", "French", "English", "Italian", "German"], "Age": [37, 20, 38, 23, 35], }, index=["A", "B", "C", "D", "E"], ) print(my_df) 출력: Person City Mother Tongue Age A Alice Berlin German 37 B Steven Montreal French 20 C Neesham Toronto English 38 D Chris Rome Italian 23 E Alice Munich German 35 reset_index()메서드를 사용하여 Pandas DataFrame의 인덱스 제거 pandas.