用法:
property DataFrame.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.DataFrame.exp用法及代码示例
- Python cudf.DataFrame.equals用法及代码示例
- Python cudf.DataFrame.eq用法及代码示例
- Python cudf.DataFrame.explode用法及代码示例
- Python cudf.DataFrame.mod用法及代码示例
- Python cudf.DataFrame.isin用法及代码示例
- Python cudf.DataFrame.rmul用法及代码示例
- Python cudf.DataFrame.apply用法及代码示例
- Python cudf.DataFrame.drop用法及代码示例
- Python cudf.DataFrame.where用法及代码示例
- Python cudf.DataFrame.median用法及代码示例
- Python cudf.DataFrame.to_pandas用法及代码示例
- Python cudf.DataFrame.take用法及代码示例
- Python cudf.DataFrame.tail用法及代码示例
- Python cudf.DataFrame.rfloordiv用法及代码示例
- Python cudf.DataFrame.head用法及代码示例
- Python cudf.DataFrame.count用法及代码示例
- Python cudf.DataFrame.isna用法及代码示例
- Python cudf.DataFrame.groupby用法及代码示例
- Python cudf.DataFrame.round用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.DataFrame.empty。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。