📜  Python|熊猫 Index.insert()

📅  最后修改于: 2022-05-13 01:55:51.534000             🧑  作者: Mango

Python|熊猫 Index.insert()

Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。

Pandas Index.insert()函数使新索引在位置插入新项目。此函数还遵循Python list.append()负值语义。如果传递负值,则从另一端开始。

示例 #1:使用Index.insert()函数在索引中插入一个新值。

# importing pandas as pd
import pandas as pd
  
# Creating the Index
idx = pd.Index(['Labrador', 'Beagle', 'Labrador',
                     'Lhasa', 'Husky', 'Beagle'])
  
# Print the Index
idx

输出 :

现在在第一个索引处插入“Great_Dane”。

# Inserting a value at the first position in the index.
idx.insert(1, 'Great_Dane')

输出 :

正如我们在输出中看到的那样, Index.insert()函数已将传递的值插入到所需的位置。示例 #2:使用Index.insert()函数将一个值插入到索引中索引中最后一个位置的第二个位置。

# importing pandas as pd
import pandas as pd
  
# Creating the Index
idx = pd.Index(['Labrador', 'Beagle', 'Labrador',
                     'Lhasa', 'Husky', 'Beagle'])
  
# Print the Index
idx

输出 :

现在在倒数第二个索引处插入“Great_Dane”。

# Inserting a value at the first position in the index.
idx.insert(-1, 'Great_Dane')

输出 :

正如我们在输出中看到的那样,传递的值已被插入到所需位置的索引中。