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

Python Pandas - Tạo một Chỉ mục với các giá trị được truyền thành các kiểu

Để tạo Chỉ mục với các giá trị được truyền thành các kiểu, hãy sử dụng index.astype () 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([50.4, 10.2, 70.5, 110.5, 90.8, 50.6])

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

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

Chuyển đổi kiểu dữ liệu thành int64 -

index.astype('int64')

Ví dụ

Sau đây là mã -

import pandas as pd

# Creating Pandas index
index = pd.Index([50.4, 10.2, 70.5, 110.5, 90.8, 50.6])

# 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 datatype to int64
print("\nIndex object after converting type...\n",index.astype('int64'))

Đầu ra

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

Pandas Index...
Float64Index([50.4, 10.2, 70.5, 110.5, 90.8, 50.6], dtype='float64')

Number of elements in the index...
6

The dtype object...
float64

Index object after converting type...
Int64Index([50, 10, 70, 110, 90, 50], dtype='int64')