Fokko commented on code in PR #34184:
URL: https://github.com/apache/arrow/pull/34184#discussion_r1124369524
##########
python/pyarrow/array.pxi:
##########
@@ -1253,6 +1253,16 @@ cdef class Array(_PandasConvertible):
options = _pc().NullOptions(nan_is_null=nan_is_null)
return _pc().call_function('is_null', [self], options)
+ def is_nan(self):
+ """
+ Return BooleanArray indicating the nan values.
+
+ Returns
+ -------
+ array : boolean Array, where null values are None
Review Comment:
@jorisvandenbossche Okay, that's fine with me as well. It was not directly
obvious for me, but it makes sense now I'm aware of it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]