Method: Polars::Expr#ne_missing
- Defined in:
- lib/polars/expr.rb
permalink #ne_missing(other) ⇒ Expr
Method equivalent of equality operator expr != other
where None == None
.
This differs from default ne
where null values are propagated.
3433 3434 3435 3436 |
# File 'lib/polars/expr.rb', line 3433 def ne_missing(other) other = Utils.parse_into_expression(other, str_as_lit: true) _from_rbexpr(_rbexpr.neq_missing(other)) end |