Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะรีเซ็ตดัชนีใน Pandas dataframe ได้อย่างไร


ในโปรแกรมนี้ เราจะแทนที่หรืออีกนัยหนึ่ง รีเซ็ตดัชนีเริ่มต้นในดาต้าเฟรมของ Pandas ก่อนอื่นเราจะสร้าง dataframe และดูดัชนีเริ่มต้น จากนั้นแทนที่ดัชนีเริ่มต้นนี้ด้วยดัชนีที่กำหนดเองของเรา

อัลกอริทึม

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