在循环中将多列数组组合成大数组
1 使用vstack
但是vstack 和 hstack都不能融合行向量,所以不好在循环中使用同一个操作
2 使用list,逐步添加. 在需要的时候转换成np.array 并转置
chosen_features = [] chosen_features.append(features[:, num_features-2]) chosen_features.append(features[:, num_features-1]) np.array(chosen_features).T