A CF-compliant earth science data analysis library
Data.
copy
Return a deep copy.
d.copy() is equivalent to copy.deepcopy(d).
d.copy()
copy.deepcopy(d)
bool
If True (the default) then copy the array, else it is not copied.
Data
The deep copy.
Examples
>>> e = d.copy() >>> e = d.copy(array=False)