Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Pandas 데이터 프레임에서 인덱스를 재설정하는 방법은 무엇입니까?

<시간/>

이 프로그램에서는 Pandas 데이터 프레임의 기본 인덱스를 바꾸거나 재설정합니다. 먼저 데이터 프레임을 만들고 기본 인덱스를 확인한 다음 이 기본 인덱스를 사용자 지정 인덱스로 바꿉니다.

알고리즘

Step 1: Define your dataframe.
Step 2: Define your own index.
Step 3: Replace the default index with your index using the reset function in Pandas library.

예시 코드

import pandas as pd

dataframe = {'Name':["Allen", "Jack", "Mark", "Vishal"],'Marks':[85,92,99,87]}

df = pd.DataFrame(dataframe)
print("Before using reset_index:\n", df)

own_index = ['a', 'j', 'm', 'v']

df = pd.DataFrame(dataframe, own_index)
df.reset_index(inplace = True)

print("After using reset_index:\n", df)

출력

Before using reset_index():
     Name  Marks
0   Allen     85
1    Jack     92
2    Mark     99
3  Vishal     87

After using reset_index():
   index    Name  Marks
0      0   Allen     85
1      1    Jack     92
2      2    Mark     99
3      3  Vishal     87