pyspark.pandas.Series.repeat¶
-
係列。
重複
( 重複:聯盟(int,係列] )→pyspark.pandas.series.Series¶ -
一係列的重複元素。
返回一個新的係列,每個元素的當前係列連續重複的次數。
- 參數
-
- 重複 int或係列
-
為每一個元素重複的次數。這應該是一個非負整數。重複0 *將返回一個空的係列。
- 返回
-
- 係列
-
新創建的係列重複元素。
另請參閱
-
Index.repeat
-
等效函數索引。
例子
> > >年代=ps。係列([“一個”,“b”,“c”])> > >年代0一個1 b2攝氏度dtype:對象> > >年代。重複(2)0一個1 b2攝氏度0一個1 b2攝氏度dtype:對象> > >ps。係列([1,2,3])。重複(0)係列([],dtype int64):