Python是進行數據分析的一種出色語言,主要是因為以數據為中心的python軟件包具有奇妙的生態係統。 Pandas是其中的一種,使導入和分析數據更加容易。
Pandas Index.insert()
函數使新索引在位置插入新項目。此函數也遵循Pythonlist.append()
負值的語義。如果傳遞負值,則從另一端開始。
用法: Index.insert(loc, item)
參數:
loc:整型
item: Object
返回:new_index:索引
範例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')
輸出:
正如我們在輸出中看到的那樣,傳遞的值已插入到Index中所需位置的位置。
相關用法
- Python pandas.map()用法及代碼示例
- Python Pandas Series.all()用法及代碼示例
- Python Pandas TimedeltaIndex.max用法及代碼示例
- Python Pandas Series.le()用法及代碼示例
- Python Pandas Series.eq()用法及代碼示例
- Python Pandas Series.ne()用法及代碼示例
- Python Pandas Series.ge()用法及代碼示例
- Python Pandas Series.lt()用法及代碼示例
- Python Pandas Series.abs()用法及代碼示例
- Python Pandas Series.sum()用法及代碼示例
- Python Pandas DataFrame.ix[ ]用法及代碼示例
- Python Pandas dataframe.sub()用法及代碼示例
- Python Pandas Timestamp.day用法及代碼示例
- Python Pandas Series.str.pad()用法及代碼示例
注:本文由純淨天空篩選整理自Shubham__Ranjan大神的英文原創作品 Python | Pandas Index.insert()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。