pandas.Series.empty#

property Series.empty[源代码]#

指示索引是否为空。

如果索引没有元素,则认为它是空的。这个属性在快速检查索引状态时非常有用,特别是在需要处理空数据集的数据处理和分析工作流中。

返回:
bool

如果索引为空,返回 True,否则返回 False。

参见

Index.size

返回基础数据中的元素数量。

示例

>>> idx = pd.Index([1, 2, 3])
>>> idx
Index([1, 2, 3], dtype='int64')
>>> idx.empty
False
>>> idx_empty = pd.Index([])
>>> idx_empty
Index([], dtype='object')
>>> idx_empty.empty
True

如果我们的 DataFrame 中只有 NaN,它不被认为是空的!

>>> idx = pd.Index([np.nan, np.nan])
>>> idx
Index([nan, nan], dtype='float64')
>>> idx.empty
False