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

Python Pandas - ส่งคืนดัชนีใหม่ของค่าที่เลือกโดยดัชนี


ในการส่งคืนดัชนีใหม่ของค่าที่เลือกโดยดัชนี ให้ใช้ index.take() วิธีการในแพนด้า ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

การสร้างดัชนีนุ่น -

index = pd.Index(['Electronics','Accessories','Decor', 'Books', 'Toys'], name ='Products')

แสดงดัชนีหมีแพนด้า −

print("Pandas Index...\n",index)

รับดัชนีใหม่ของค่าที่เลือกโดยดัชนี -

print("\nA new Index of the values selected by the indices...\n",index.take([1,2]))

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

import pandas as pd

# Creating Pandas index
index = pd.Index(['Electronics','Accessories','Decor', 'Books', 'Toys'], name ='Products')

# Display the Pandas index
print("Pandas Index...\n",index)

# Return the number of elements in the Index
print("\nNumber of elements in the index...\n",index.size)

# Return the dtype of the data
print("\nThe dtype object...\n",index.dtype)

# Getting a new index of the values selected by indices
print("\nA new Index of the values selected by the indices...\n",index.take([1,2]))

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Pandas Index...
Index(['Electronics', 'Accessories', 'Decor', 'Books', 'Toys'], dtype='object', name='Products')

Number of elements in the index...
5

The dtype object...
object

A new Index of the values selected by the indices...
Index(['Accessories', 'Decor'], dtype='object', name='Products')