Python是進行數據分析的一種出色語言,主要是因為以數據為中心的python軟件包具有奇妙的生態係統。 Pandas是其中的一種,使導入和分析數據更加容易。
Pandas Index.get_slice_bound()
函數計算與給定標簽對應的切片範圍,並返回該值。如果將side參數設置為left,該函數將返回給定標簽的最左側位置;如果將side參數設置為right,則該函數將返回one-past標簽的最右側位置。
用法: Index.get_slice_bound(label, side, kind)
參數:
label: Object
side:{'左右'}
kind:{“ ix”,“ loc”,“ getitem”}
返回:界限值
範例1:采用Index.get_slice_bound()
函數查找傳遞的值的正確切片邊界。
# importing pandas as pd
import pandas as pd
# Creating the Index
idx = pd.Index(['Labrador', 'Beagle', 'Labrador',
'Lhasa', 'Husky', 'Beagle'])
# Print the Index
idx
輸出:
讓我們找出所傳遞值的分界線。
# Print the right slice bound of the passed value..
idx.get_slice_bound('Lhasa', side ='right', kind ='getitem')
輸出:
正如我們在輸出中看到的,Index.get_slice_bound()
函數已返回4,因為它比索引中傳遞的值的位置高1。
範例2:采用Index.get_slice_bound()
函數查找傳遞的值的左切片邊界。
輸出:
如我們所見,該函數已返回輸出7,因為這是傳遞值的位置以及綁定到傳遞值的左切片的位置。
相關用法
- 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.get_slice_bound()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。