Copy array. This is a no-op for dask.arrays, which are immutable
(self)
| 2948 | return round(self, decimals=decimals) |
| 2949 | |
| 2950 | def copy(self): |
| 2951 | """ |
| 2952 | Copy array. This is a no-op for dask.arrays, which are immutable |
| 2953 | """ |
| 2954 | return Array(self.dask, self.name, self.chunks, meta=self) |
| 2955 | |
| 2956 | def __deepcopy__(self, memo): |
| 2957 | c = self.copy() |