用法:
property Series.empty
指示 Series/DataFrame 是否为空。
如果 Series/DataFrame 完全为空(没有项目),则为真,这意味着任何轴的长度为 0。
- bool
如果 Series/DataFrame 为空,则返回 True,否则返回 False。
返回:
注意:
如果 Series/DataFrame 只包含 NaN,它仍然不被认为是空的。请参见下面的示例。
例子:
实际空 DataFrame 的示例。注意索引是空的:
>>> df_empty = pd.DataFrame({'A':[]}) >>> df_empty Empty DataFrame Columns:[A] Index:[] >>> df_empty.empty True
如果我们的 DataFrame 中只有 NaN,它不会被认为是空的!我们需要删除 NaN 以使 DataFrame 为空:
>>> df = pd.DataFrame({'A':[np.nan]}) >>> df A 0 NaN >>> df.empty False >>> df.dropna().empty True
>>> ser_empty = pd.Series({'A':[]}) >>> ser_empty A [] dtype:object >>> ser_empty.empty False >>> ser_empty = pd.Series() >>> ser_empty.empty True
相关用法
- Python pandas.Series.eq用法及代码示例
- Python pandas.Series.explode用法及代码示例
- Python pandas.Series.ewm用法及代码示例
- Python pandas.Series.expanding用法及代码示例
- Python pandas.Series.equals用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
- Python pandas.Series.max用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.to_csv用法及代码示例
- Python pandas.Series.dt.day_name用法及代码示例
- Python pandas.Series.sample用法及代码示例
- Python pandas.Series.head用法及代码示例
- Python pandas.Series.plot.line用法及代码示例
- Python pandas.Series.to_pickle用法及代码示例
- Python pandas.Series.between_time用法及代码示例
- Python pandas.Series.reindex_like用法及代码示例
- Python pandas.Series.dt.is_year_end用法及代码示例
- Python pandas.Series.repeat用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.empty。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。