用法:
property Series.empty
指示 DataFrame 或 Series 是否为空。
如果 DataFrame/Series 完全为空(没有项目),则为真,这意味着任何轴的长度为 0。
- out:bool
如果 DataFrame/Series 为空,则返回 True,否则返回 False。
返回:
注意:
如果 DataFrame/Series 仅包含
null
值,它仍然不被认为是空的。请参见下面的示例。例子:
>>> import cudf >>> df = cudf.DataFrame({'A' : []}) >>> df Empty DataFrame Columns: [A] Index: [] >>> df.empty True
如果我们的 DataFrame 中只有
null
值,则它不被认为是空的!我们需要删除null
以使 DataFrame 为空:>>> df = cudf.DataFrame({'A' : [None, None]}) >>> df A 0 <NA> 1 <NA> >>> df.empty False >>> df.dropna().empty True
非空和空系列示例:
>>> s = cudf.Series([1, 2, None]) >>> s 0 1 1 2 2 <NA> dtype: int64 >>> s.empty False >>> s = cudf.Series([]) >>> s Series([], dtype: float64) >>> s.empty True
相关用法
- Python cudf.Series.equals用法及代码示例
- Python cudf.Series.explode用法及代码示例
- Python cudf.Series.exp用法及代码示例
- Python cudf.Series.eq用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- 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用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.empty。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。