列の追加
insertメソッドを使う。
>>> aa = np.array([[1,3,4],[3,2,4],[5,4,5]]) >>> aa array([[1, 3, 4], [3, 2, 4], [5, 4, 5]]) >>> bb = np.array([0,0,0]) >>> np.insert(aa,0,bb,axis=1) array([[0, 1, 3, 4], [0, 3, 2, 4], [0, 5, 4, 5]]) >>> history -o -p
insertメソッドを使う。
>>> aa = np.array([[1,3,4],[3,2,4],[5,4,5]]) >>> aa array([[1, 3, 4], [3, 2, 4], [5, 4, 5]]) >>> bb = np.array([0,0,0]) >>> np.insert(aa,0,bb,axis=1) array([[0, 1, 3, 4], [0, 3, 2, 4], [0, 5, 4, 5]]) >>> history -o -p