polars.Series.eq_missing#
- Series.eq_missing(other: Any) Series | Expr[source]#
Method equivalent of equality operator
series == otherwhereNone == None.This differs from the standard
eqwhere null values are propagated.- Parameters:
- other
A literal or expression value to compare with.
See also
Examples
>>> s1 = pl.Series("a", [333, 200, None]) >>> s2 = pl.Series("a", [100, 200, None]) >>> s1.eq(s2) shape: (3,) Series: 'a' [bool] [ false true null ] >>> s1.eq_missing(s2) shape: (3,) Series: 'a' [bool] [ false true true ]