xorbits.pandas.Index.append#

Index.append(other: Index | Sequence[Index]) Index[source]#

Append a collection of Index options together.

Parameters

other (Index or list/tuple of indices) –

Return type

Index

Examples

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

Warning

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.