Save array to the TileDB storage manager See https://docs.tiledb.io for details about the format and engine. See function :func:`dask.array.to_tiledb` for argument documentation. See also -------- dask.array.to_tiledb : equivalent function
(self, uri, *args, **kwargs)
| 3015 | return to_zarr(self, *args, **kwargs) |
| 3016 | |
| 3017 | def to_tiledb(self, uri, *args, **kwargs): |
| 3018 | """Save array to the TileDB storage manager |
| 3019 | |
| 3020 | See https://docs.tiledb.io for details about the format and engine. |
| 3021 | |
| 3022 | See function :func:`dask.array.to_tiledb` for argument documentation. |
| 3023 | |
| 3024 | See also |
| 3025 | -------- |
| 3026 | dask.array.to_tiledb : equivalent function |
| 3027 | """ |
| 3028 | from dask.array.tiledb_io import to_tiledb |
| 3029 | |
| 3030 | return to_tiledb(self, uri, *args, **kwargs) |
| 3031 | |
| 3032 | |
| 3033 | def ensure_int(f): |