pyspark.pandas.Series.append¶
-
係列。
附加
( to_append:pyspark.pandas.series.Series,ignore_index:bool=假,verify_integrity:bool=假 )→pyspark.pandas.series.Series¶ -
連接兩個或更多的係列。
- 參數
-
- to_append 係列或列表/元組係列
- ignore_index 布爾,默認的錯誤
-
如果這是真的,不使用索引標簽。
- verify_integrity 布爾,默認的錯誤
-
如果這是真的,提高異常與重複創建索引
- 返回
-
- 附加 係列
例子
> > >s1=ps。係列([1,2,3])> > >s2=ps。係列([4,5,6])> > >s3=ps。係列([4,5,6),指數=(3,4,5])
> > >s1。附加(s2)0 11 22 30 41 - 52 - 6dtype: int64
> > >s1。附加(s3)0 11 22 33 44個55個6dtype: int64
ignore_index設置為True:
> > >s1。附加(s2,ignore_index=真正的)0 11 22 33 44個55個6dtype: int64