NumericValue.
nullifzero
Set values to NULL if they equal to zero. Commonly used in cases where divide-by-zero would produce an overflow or infinity.
Equivalent to (value == 0).ifelse(ibis.NA, value)