Python Pandas - 計算索引器並查詢下一個索引值(如果無完全匹配)
要計算索引器,並在無完全匹配的情況下查詢下一個索引值,請使用 index.get_indexer() 方法。此外,將 method 引數設為 bfill。
首先,匯入必需的庫 -
import pandas as pd
建立 Pandas 索引 -
index = pd.Index([10, 20, 30, 40, 50, 60, 70])
顯示 Pandas 索引 -
print("Pandas Index...\n",index)使用 "get_indexer" 計算索引器和掩碼。若無完全匹配,請使用 "method" 引數查詢下一個索引值。該值被設為 "bfill" -
print("\nGet the indexes...\n",index.get_indexer([30, 25, 58, 50, 55], method="bfill"))
示例
以下是程式碼 -
import pandas as pd
# Creating Pandas index
index = pd.Index([10, 20, 30, 40, 50, 60, 70])
# 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)
# Compute indexer and mask using the "get_indexer"
# Find the next index value if no exact match using the "method" parameter.
# The value is set "bfill"
print("\nGet the indexes...\n",index.get_indexer([30, 25, 58, 50, 55], method="bfill"))輸出
這將生成以下輸出 -
Pandas Index... Int64Index([10, 20, 30, 40, 50, 60, 70], dtype='int64') Number of elements in the index... 7 Get the indexes... [2 2 5 4 5]
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP