modin.pandas.Index.copy

Index.copy(name: Hashable | None = None, deep: bool = False) Index[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.26.0/snowpark-python/src/snowflake/snowpark/modin/plugin/extensions/index.py#L512-L520)

Make a copy of this object.

Name is set on the new object.

Parameters:
  • name (Label, optional) – Set name for new object.

  • deep (bool, default False) –

Returns:

Index refers 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.

Examples

>>> idx = pd.Index(['a', 'b', 'c'])
>>> new_idx = idx.copy()
>>> idx is new_idx
False
Copy
Language: English