bigframes.pandas.Series.hasnans#

property Series.hasnans: bool#

Return True if there are any NaNs.

Examples:

>>> s = bpd.Series([1, 2, 3, None])
>>> s
0     1.0
1     2.0
2     3.0
3    <NA>
dtype: Float64
>>> s.hasnans
np.True_
Returns:

bool