用法:
property Series.has_nulls
指示 Series 是否包含空值。
- out:bool
如果 Series 至少有一个 null 值,则返回 True,否则返回 False。
返回:
例子:
>>> import cudf >>> series = cudf.Series([1, 2, None, 3, 4]) >>> series 0 1 1 2 2 <NA> 3 3 4 4 dtype: int64 >>> series.has_nulls True >>> series.dropna().has_nulls False
相关用法
- Python cudf.Series.hash_values用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.reindex用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
- Python cudf.Series.min用法及代码示例
- Python cudf.Series.nlargest用法及代码示例
- Python cudf.Series.to_frame用法及代码示例
- Python cudf.Series.mask用法及代码示例
- Python cudf.Series.notnull用法及代码示例
- Python cudf.Series.isnull用法及代码示例
- Python cudf.Series.rmod用法及代码示例
- Python cudf.Series.map用法及代码示例
- Python cudf.Series.nsmallest用法及代码示例
- Python cudf.Series.data用法及代码示例
- Python cudf.Series.lt用法及代码示例
- Python cudf.Series.product用法及代码示例
- Python cudf.Series.add用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.has_nulls。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。