We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
duck_array_ops.concatenate and duck_array_ops.stack load dask variables if the first one is numpy-based:
duck_array_ops.concatenate
duck_array_ops.stack
xarray.concat([ xarray.DataArray([1]).chunk(), xarray.DataArray([1]), ], dim='dim_0') Out[1]: <xarray.DataArray (dim_0: 2)> dask.array<shape=(2,), dtype=int64, chunksize=(1,)> Dimensions without coordinates: dim_0 xarray.concat([ xarray.DataArray([1]), xarray.DataArray([1]).chunk(), ], dim='dim_0') Out[2]: <xarray.DataArray (dim_0: 2)> array([1, 1]) Dimensions without coordinates: dim_0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
duck_array_ops.concatenate
andduck_array_ops.stack
load dask variables if the first one is numpy-based:The text was updated successfully, but these errors were encountered: