pandas.Index.size#

property Index.size[源代码]#

返回底层数据中的元素数量。

参见

Series.ndim

底层数据维度的数量,定义为1。

Series.shape

返回基础数据形状的元组。

Series.dtype

返回底层数据的 dtype 对象。

Series.values

根据 dtype 返回 Series 作为 ndarray 或类似 ndarray 的对象。

示例

对于系列:

>>> s = pd.Series(["Ant", "Bear", "Cow"])
>>> s
0     Ant
1    Bear
2     Cow
dtype: object
>>> s.size
3

对于索引:

>>> idx = pd.Index([1, 2, 3])
>>> idx
Index([1, 2, 3], dtype='int64')
>>> idx.size
3