Python Pandas - 在最后一个索引的第一个索引处插入一个新的索引值

要在最后一个索引的第一个索引处插入新的索引值,请使用方法。设置最后一个索引值 -1 和要作为参数插入的值。index.insert()

首先,导入所需的库——

import pandas as pd

创建 Pandas 索引 -

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

显示索引 -

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

使用该insert()方法在最后一个索引处插入一个新值。中的第一个参数insert()是放置新索引值的位置。这里的 -1 表示新索引值插入到最后一个索引的第一个索引处。第二个参数是要插入的新索引值。

index.insert(-1, 'Suburban')

示例

以下是代码 -

import pandas as pd

# 创建 Pandas 索引

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

# 显示索引

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

# 返回数据的 dtype

print("\nThe dtype object...\n",index.dtype)

# 使用 insert() 方法在最后一个索引的第一个索引处插入一个新值。

# insert() 中的第一个参数是放置新索引值的位置。

# 这里的 -1 表示新索引值插入到最后一个索引的第一个索引处。

# 第二个参数是要插入的新索引值。

print("\nAfter inserting a new index value...\n", index.insert(-1, 'Suburban'))

输出结果

这将产生以下输出 -

Pandas Index...

Index(['Car', 'Bike', 'Airplane', 'Ship', 'Truck'], dtype='object')

The dtype object...

object

After inserting a new index value...

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

以上是 Python Pandas - 在最后一个索引的第一个索引处插入一个新的索引值 的全部内容, 来源链接: utcz.com/z/331624.html

回到顶部