You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import dask.array as da
from xray import DataArray, concat
from xray.test import InaccessibleArray
import numpy as np
arrays = [DataArray(
da.from_array(InaccessibleArray(np.zeros((3, 3))), 3),
dims=['x', 'y']) for _ in range(2)]
combined = concat(arrays, dim='z')
related: #438
The text was updated successfully, but these errors were encountered: