numpy.vstack(tup)[source]Stack arrays in sequence vertically (row wise).This is equivalent to concatenation...vertically.block Assemble arrays from blocks.Examples>>> a = np.array([1, 2, 3])>>> b = np.array([2, 3, 4])>>> np.vstack...1, 2, 3], [2, 3, 4]])>>> a = np.array([[1], [2], [3]])>>> b = np.array([[2], [3], [4]])>>> np.vstack