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
importxarrayasxrimportnumpyasnper=xr.DataArray(np.array((np.arange(3), np.arange(6)))) # dtype=object because two different vector sizeprint(er.data[0]) # Does workprint(er[0]) # Does not work (ValueError)#I'm a bit puzzled...