Say I have about 640 numpy arrays to stack vertically. Each array is of the size (66, 1). Doing this manually like this:
A = np.vstack((Ne['State_1_inc'], Ne['State_2_inc'], Ne['State_3_inc'], Ne['State_4_inc'], ..., Ne['State_640_inc']))
would obviously take a long time and is very time consuming. The end result would have A the size (66,640). Anybody know if I could do a for loop
that will pass in all of my 640 states so I can build my matrix? New to programming here, thanks!