xorbits.pandas.Index.copy#

Index.copy()#

Make a copy of this object.

Name is set on the new object.

Parameters
  • name (Label, optional (Not supported yet)) – Set name for new object.

  • deep (bool, default False (Not supported yet)) –

Returns

Index refer to new object which is a copy of this object.

Return type

Index

Notes

In most cases, there should be no functional difference from using deep, but if deep is passed it will attempt to deepcopy.

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