Convert blocks in dask array x for new chunks. Refer to :func:`dask.array.rechunk` for full documentation. See Also -------- dask.array.rechunk : equivalent function
(
self,
chunks="auto",
threshold=None,
block_size_limit=None,
balance=False,
method=None,
)
| 2794 | return squeeze(self, axis) |
| 2795 | |
| 2796 | def rechunk( |
| 2797 | self, |
| 2798 | chunks="auto", |
| 2799 | threshold=None, |
| 2800 | block_size_limit=None, |
| 2801 | balance=False, |
| 2802 | method=None, |
| 2803 | ): |
| 2804 | """Convert blocks in dask array x for new chunks. |
| 2805 | |
| 2806 | Refer to :func:`dask.array.rechunk` for full documentation. |
| 2807 | |
| 2808 | See Also |
| 2809 | -------- |
| 2810 | dask.array.rechunk : equivalent function |
| 2811 | """ |
| 2812 | from dask.array.rechunk import rechunk # avoid circular import |
| 2813 | |
| 2814 | return rechunk(self, chunks, threshold, block_size_limit, balance, method) |
| 2815 | |
| 2816 | def shuffle( |
| 2817 | self, |