當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pyspark Series.ndim用法及代碼示例


本文簡要介紹 pyspark.pandas.Series.ndim 的用法。

用法:

property Series.ndim

返回表示數組維數的int。

為係列/索引/多索引返回 1。

例子

對於係列

>>> s = ps.Series([None, 1, 2, 3, 4], index=[4, 5, 2, 1, 8])
>>> s.ndim
1

對於索引

>>> s.index.ndim
1

對於MultiIndex

>>> midx = pd.MultiIndex([['lama', 'cow', 'falcon'],
...                       ['speed', 'weight', 'length']],
...                      [[0, 0, 0, 1, 1, 1, 2, 2, 2],
...                       [1, 1, 1, 1, 1, 2, 1, 2, 2]])
>>> s = ps.Series([45, 200, 1.2, 30, 250, 1.5, 320, 1, 0.3], index=midx)
>>> s.index.ndim
1

相關用法


注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 pyspark.pandas.Series.ndim。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。