xorbits.pandas.Index.append#

Index.append(other: Index | Sequence[Index]) Index[源代码]#

Append a collection of Index options together.

参数

other (Index or list/tuple of indices) –

返回类型

Index

实际案例

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

警告

This method has not been implemented yet. Xorbits will try to execute it with pandas.

This docstring was copied from pandas.core.indexes.base.Index.