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

Python Pandas - Tạo DataFrame với cả chỉ mục và tên gốc

Để tạo DataFrame có cả chỉ mục và tên gốc, hãy sử dụng index.to_frame () 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','Accessories','Decor', 'Books', 'Toys'],name ='Products')

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

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

Chuyển đổi chỉ mục thành DataFrame -

print("\nIndex to DataFrame...\n",index.to_frame())

Ví dụ

Sau đây là mã -

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 DataFrame
print("\nIndex to DataFrame...\n",index.to_frame())

Đầu ra

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

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 DataFrame...
                Products
Products
Electronics  Electronics
Accessories  Accessories
Decor              Decor
Books              Books
Toys                Toys