Copy array. This is a no-op for dask.arrays, which are immutable
(self)
| 2942 | return round(self, decimals=decimals) |
| 2943 | |
| 2944 | def copy(self): |
| 2945 | """ |
| 2946 | Copy array. This is a no-op for dask.arrays, which are immutable |
| 2947 | """ |
| 2948 | return Array(self.dask, self.name, self.chunks, meta=self) |
| 2949 | |
| 2950 | def __deepcopy__(self, memo): |
| 2951 | c = self.copy() |