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

Python Pandas - ตั้งชื่อดัชนีสำหรับวัตถุดัชนีที่สร้างขึ้นแล้ว


ในการตั้งชื่อดัชนีสำหรับวัตถุดัชนีที่สร้างขึ้นแล้ว ให้ใช้ index.set_names() วิธีการในแพนด้า ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

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

index = pd.Index(["Electronics", "Mobile Phones", "Accessories", "Home Decor", "Books"])

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

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

ตั้งชื่อดัชนี −

print("\nSet the index name...\n",index.set_names('Products'))

ตัวอย่าง

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

import pandas as pd

# Creating Pandas index
index = pd.Index(["Electronics", "Mobile Phones", "Accessories", "Home Decor", "Books"])

# 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)

# set the name of index
print("\nSet the index name...\n",index.set_names('Products'))

ผลลัพธ์

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

Pandas Index...
Index(['Electronics', 'Mobile Phones', 'Accessories', 'Home Decor', 'Books'], dtype='object')

Number of elements in the index...
5

The dtype object...
object

Set the index name...
Index(['Electronics', 'Mobile Phones', 'Accessories', 'Home Decor', 'Books'], dtype='object', name='Products')