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

ลบสามแถวแรกของ DataFrame ใน Pandas


ในการลบ DataFrame สามแถวแรกใน Pandas เราสามารถใช้ iloc() วิธีการ

ขั้นตอน

  • สร้างข้อมูลตารางแบบสองมิติ ปรับขนาดได้ และอาจต่างกันได้ df .
  • พิมพ์ DataFrame อินพุต df .
  • ลบสามแถวแรกโดยใช้ df.iloc[3:] .
  • พิมพ์ DataFrame ที่อัปเดต

ตัวอย่าง

import pandas as pd

df = pd.DataFrame(
   {
      "x": [5, 2, 7, 0, 7, 0, 5, 2],
      "y": [4, 7, 5, 1, 5, 1, 4, 7],
      "z": [9, 3, 5, 1, 5, 1, 9, 3]
   }
)

print "Input DataFrame is:\n", df
df = df.iloc[3:]
print "After deleting the first 3 rows: \n", df

ผลลัพธ์


Input DataFrame is:
   x  y  z
0  5  4  9
1  2  7  3
2  7  5  5
3  0  1  1
4  7  5  5
5  0  1  1
6  5  4  9
7  2  7  3

After deleting the first 3 rows:
   x  y  z
3  0  1  1
4  7  5  5
5  0  1  1
6  5  4  9
7  2  7  3