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 was going through the tutorials and documentation and noticed a couple of things which I think need to be corrected. I am sure of one, but I want to enquire about the other.
The chunk with indices (0, 0) provides data for rows 0-1000 and columns 0-1000 and is stored under the key “0.0”; the chunk with indices (2, 4) provides data for rows 2000-3000 and columns 4000-5000 and is stored under the key “2.4”;
I believe chunk with indices (0,0) provides data for rows 0-999 and columns 0-999 and (2,4) for rows (2000-2999) and columns (4000-4999). Is this correct or am I misunderstanding something?
I am happy to updated the documentation as necessary and generate a PR.
The text was updated successfully, but these errors were encountered:
I was going through the tutorials and documentation and noticed a couple of things which I think need to be corrected. I am sure of one, but I want to enquire about the other.
z[1, [1, 3]]
andz[[1, 1], [1, 3]]
are wrong, they should bearray([6, 8])
I believe chunk with indices (0,0) provides data for rows 0-999 and columns 0-999 and (2,4) for rows (2000-2999) and columns (4000-4999). Is this correct or am I misunderstanding something?
I am happy to updated the documentation as necessary and generate a PR.
The text was updated successfully, but these errors were encountered: