pandas.Index.ndim#

property Index.ndim[源代码]#

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

参见

Series.size

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

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.ndim
1

对于索引:

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