cf.Index.to_dask_array¶
-
Index.
to_dask_array
()[source]¶ Convert the data to a
dask
array.New in version 3.14.0.
See also
- Returns
dask.array.Array
The dask array contained within the Index instance.
Examples
>>> f.to_dask_array() dask.array<copy, shape=(10, 9), dtype=float64, chunksize=(10, 9), chunktype=numpy.ndarray>
>>> f.to_dask_array() is f.data.to_dask_array() True