cf.Index.copy¶
-
Index.copy(data=True)[source]¶ Return a deep copy.
f.copy()is equivalent tocopy.deepcopy(f).Arrays within
Datainstances are copied with a copy-on-write technique. This means that a copy takes up very little extra memory, even when the original contains very large data arrays, and the copy operation is fast.New in version 1.7.0.
- Parameters
- data:
bool, optional If False then do not copy data. By default data are copied.
- data:
- Returns
The deep copy.
Examples:
>>> g = f.copy() >>> g = f.copy(data=False) >>> g.has_data() False