daft.expressions.Expression.is_null#

Expression.is_null() daft.expressions.Expression[source]#

Checks if values in the Expression are Null (a special value indicating missing data)

Example

>>> # [1., None, NaN] -> [False, True, False]
>>> col("x").is_null()
Returns

LOGICAL Expression indicating whether values are missing

Return type

Expression