Python数据分析三大框架之numpy (五)合并

喜欢而已 提交于 2020-03-02 07:26:12

numpy数组的合并

 

  • 按行合并

import numpy as np

A = np.array([1, 1, 1])
B = np.array([2, 2, 2])

print(np.vstack((A, B)))

# 按行合并
C = np.vstack((A, B))
print(A.shape, B.shape, C.shape)


#result
[[1 1 1]
 [2 2 2]]
(3,) (3,) (2, 3)

 

  • 首尾合并

# 首尾合并
D = np.hstack((A, B))
print(A.shape, B.shape, D.shape)

print(A[np.newaxis, :])

print(np.concatenate((A, B, B, A)))


#result
(3,) (3,) (6,)
[[1 1 1]]
[1 1 1 2 2 2 2 2 2 1 1 1]

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!