用法:
Series.between(left, right, inclusive='both')
返回布爾係列等價於左 <= 係列 <= 右。
此函數返回一個包含
True
的布爾向量,隻要對應的 Series 元素位於邊界值left
和right
之間。 NA 值被視為False
。- left:標量或list-like
左邊界。
- right:標量或list-like
右邊界。
- inclusive:{“both”, “neither”, “left”, “right”}
包括邊界。是否將每個邊界設置為關閉或打開。
- Series
表示每個元素是否在左右(包括)之間的係列。
參數:
返回:
注意:
這個函數相當於
(left <= ser) & (ser <= right)
例子:
>>> s = pd.Series([2, 0, 4, 8, np.nan])
默認情況下包含邊界值:
>>> s.between(1, 4) 0 True 1 False 2 True 3 False 4 False dtype:bool
inclusive
設置為"neither"
邊界值被排除:>>> s.between(1, 4, inclusive="neither") 0 True 1 False 2 False 3 False 4 False dtype:bool
left
和right
可以是任何標量值:>>> s = pd.Series(['Alice', 'Bob', 'Carol', 'Eve']) >>> s.between('Anna', 'Daniel') 0 False 1 True 2 True 3 False dtype:bool
相關用法
- Python pandas.Series.between_time用法及代碼示例
- Python pandas.Series.bool用法及代碼示例
- Python pandas.Series.add_prefix用法及代碼示例
- Python pandas.Series.map用法及代碼示例
- Python pandas.Series.max用法及代碼示例
- Python pandas.Series.str.isdecimal用法及代碼示例
- Python pandas.Series.str.get用法及代碼示例
- Python pandas.Series.to_csv用法及代碼示例
- Python pandas.Series.dt.day_name用法及代碼示例
- Python pandas.Series.sample用法及代碼示例
- Python pandas.Series.head用法及代碼示例
- Python pandas.Series.eq用法及代碼示例
- Python pandas.Series.plot.line用法及代碼示例
- Python pandas.Series.to_pickle用法及代碼示例
- Python pandas.Series.reindex_like用法及代碼示例
- Python pandas.Series.dt.is_year_end用法及代碼示例
- Python pandas.Series.repeat用法及代碼示例
- Python pandas.Series.str.replace用法及代碼示例
- Python pandas.Series.update用法及代碼示例
- Python pandas.Series.iat用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Series.between。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。