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
When slicing AnnData with a List of one (adata[:, [0]]) element, I expect it to return a 2d array.
When slicing AnnData with one element (adata[:, 0]), I expect it to return a 1d array.
AnnData always returns a 1d array.
When slicing AnnData with a List of one (
adata[:, [0]]
) element, I expect it to return a 2d array.When slicing AnnData with one element (
adata[:, 0]
), I expect it to return a 1d array.AnnData always returns a 1d array.
See the following example
Expected behaviour (like in numpy)
Actual behaviour:
This is somewhat related to #60. I still opened a separate issue as in my case the behavious is actually inconsistent with numpy.
The text was updated successfully, but these errors were encountered: