Python Pandas - 建立一個值型別轉換為指定型別的索引


要為值型別轉換為指定型別的索引建立索引,請在 Pandas 中使用 index.astype() 方法。首先,匯入必需的庫 −

import pandas as pd

建立 Pandas 索引 −

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

顯示 Pandas 索引 −

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

將資料型別轉換為 int64 −

index.astype('int64')

示例

以下是程式碼 −

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

輸出

這將生成以下輸出 −

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

更新於: 13-Oct-2021

281 瀏覽量

開啟你的職業生涯

完成課程獲得認證

開始學習
廣告
© . All rights reserved.