私の質問は、numpy での配列のスライスについてです。次の動作のロジックは何ですか?
x = arange(25)
x.shape = (5, 5)
# This results in a 2-d array in which rows and columns are excerpted from x
y = x[0:2, 0:2]
# But this results in a 1-d array
y2 = x[0:2, 0]
y2 は、行 0 と 1、列 0 の値を含む 2 次元配列であると予想していました。