用法:
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。