englishdata-analysis-with-pythonnumpyReorganizing ArraysOn this page--question-- --text-- What code would produce the following array? [[1. 1.][1. 1.][1. 1.][1. 1.]] --answers-- a = np.ones((2, 4))b = a.reshape((4, 2))print(b) a = np.ones((2, 4))b = a.reshape((2, 4))print(b) a = np.ones((2, 4))b = a.reshape((8, 1))print(b) --video-solution-- 1