Computer >> Máy Tính >  >> Lập trình >> Python

Python Pandas - Đặt tên chỉ mục cho một đối tượng Chỉ mục đã được tạo

Để đặt tên chỉ mục cho đối tượng Chỉ mục đã được tạo, hãy sử dụng index.set_names () trong Pandas. Đầu tiên, hãy nhập các thư viện được yêu cầu -

import pandas as pd

Tạo chỉ mục Pandas -

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

Hiển thị chỉ mục Gấu trúc -

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

Đặt tên của chỉ mục -

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

Ví dụ

Sau đây là mã -

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

Đầu ra

Điều này sẽ tạo ra kết quả sau -

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