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

Python Pandas - สร้างซีรีส์ที่มีทั้งดัชนีและชื่อดั้งเดิม


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

import pandas as pd

การสร้างดัชนี Pandas:

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

แปลงดัชนีเป็นอนุกรม -

print("\nIndex to series...\n",index.to_series())

ตัวอย่าง

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

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)

# convert index to series
print("\nIndex to series...\n",index.to_series())

ผลลัพธ์

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

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

Number of elements in the index...
5

The dtype object...
object

Index to series...
Products
Electronics  Electronics
Accessories  Accessories
Decor              Decor
Books              Books
Toys                Toys
Name: Products, dtype: object