Python Pandas - 更改索引名稱


若要更改索引名稱,可在 Pandas 中使用 index.rename() 方法。首先,匯入必需的庫 -

import pandas as pd

建立 Pandas 索引 -

index = pd.Index(['Car','Bike','Airplane', 'Ship','Truck','Suburban'], name ='Transport')

顯示 Pandas 索引 -

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

重新命名索引 -

print("\nRename the index...\n",index.rename('Mode_of_Transport'))

示例

以下為程式碼 -

import pandas as pd

# Creating Pandas index
index = pd.Index(['Car','Bike','Airplane', 'Ship','Truck','Suburban'], name ='Transport')

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

# Rename the index
print("\nRename the index...\n",index.rename('Mode_of_Transport'))

輸出

將產生以下輸出 -

Pandas Index...
Index(['Car', 'Bike', 'Airplane', 'Ship', 'Truck', 'Suburban'], dtype='object', name='Transport')

Number of elements in the index...
6

The dtype object...
object

Rename the index...
Index(['Car', 'Bike', 'Airplane', 'Ship', 'Truck', 'Suburban'], dtype='object', name='Mode_of_Transport')

更新於:2021-10-13

169 次瀏覽

職業生涯閃亮登場

透過完成課程獲得認證

立即開始
廣告
© . All rights reserved.