pandas.Series.lt¶
-
Series.
lt
(other, level=None, fill_value=None, axis=0)[source]¶ 小于系列和其他,元素方式(二元运算符lt)。
Equivalent to
series < other
, but with support to substitute a fill_value for missing data in one of the inputs.参数: other:系列或标量值
fill_value:无或浮点值,默认值无(NaN)
使用此值填充缺失(NaN)值。如果两个系列都缺失,结果将丢失
level:int或name
跨级别广播,匹配传递的MultiIndex级别上的索引值
返回: 结果:系列
也可以看看
Series.None