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

วิธีรับดัชนีคอลัมน์จากชื่อคอลัมน์ใน Python Pandas


ในการรับดัชนีคอลัมน์จากชื่อคอลัมน์ใน Python Pandas เราสามารถใช้ get_loc() วิธีการ

ขั้นตอน -

  • สร้างข้อมูลตารางแบบสองมิติ ปรับขนาดได้ และอาจต่างกันได้ df .
  • พิมพ์ DataFrame อินพุต df .
  • ค้นหาคอลัมน์ของ DataFrame โดยใช้ df.columns .
  • พิมพ์คอลัมน์จากขั้นตอนที่ 3
  • เริ่มต้นตัวแปร column_name .
  • รับตำแหน่ง เช่น ของดัชนีสำหรับ column_name .
  • พิมพ์ดัชนีของ column_name .

ตัวอย่าง −

import pandas as pd

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

print"Input DataFrame 1 is:\n", df
columns = df.columns
print"Columns in the given DataFrame: ", columns

column_name = "z"
column_index = columns.get_loc(column_name)
print"Index of the column ", column_name, " is: ", column_index

column_name = "x"
column_index = columns.get_loc(column_name)
print"Index of the column ", column_name, " is: ", column_index

column_name = "y"
column_index = columns.get_loc(column_name)
print"Index of the column ", column_name, " is: ", column_index

ผลลัพธ์

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

Columns in the given DataFrame: Index(['x', 'y', 'z'],
dtype='object')

Index of the column z is: 2
Index of the column x is: 0
Index of the column y is: 1