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
I would like to support the xarray equivalent of LinesAxis1XConstant which has multiple lines that all share the same x coordinates. The xarray.DataArray would be 2D, one dimension would be the x dimension and the other could be anything including a string/categorical dimension. It is best illustrated by an example:
This should support both dask and CUDA backed xarrays, and the 2D dimensions could be in either order as we do not want to force the user to do an unnecessary array transpose.
We do support some use of xarray for lines at the moment, but it is restricted to 1D x and y values.
The text was updated successfully, but these errors were encountered:
I would like to support the
xarray
equivalent ofLinesAxis1XConstant
which has multiple lines that all share the samex
coordinates. Thexarray.DataArray
would be 2D, one dimension would be thex
dimension and the other could be anything including a string/categorical dimension. It is best illustrated by an example:The
x
coordinates here have length 5 and theDataArray
is of shape(2, 5)
. The output aggregation here would be something likeThis should support both dask and CUDA backed xarrays, and the 2D dimensions could be in either order as we do not want to force the user to do an unnecessary array transpose.
We do support some use of
xarray
for lines at the moment, but it is restricted to 1Dx
andy
values.The text was updated successfully, but these errors were encountered: