arkouda.pdarraymanipulation =========================== .. py:module:: arkouda.pdarraymanipulation Functions --------- .. autoapisummary:: arkouda.pdarraymanipulation.vstack Module Contents --------------- .. py:function:: vstack(tup: Union[Tuple[arkouda.pdarrayclass.pdarray], List[arkouda.pdarrayclass.pdarray]], *, dtype: Optional[Union[type, str]] = None, casting: Literal['no', 'equiv', 'safe', 'same_kind', 'unsafe'] = 'same_kind') -> arkouda.pdarrayclass.pdarray Stack a sequence of arrays vertically (row-wise). This is equivalent to concatenation along the first axis after 1-D arrays of shape `(N,)` have been reshaped to `(1,N)`. :param tup: The arrays to be stacked :type tup: Tuple[pdarray] :param dtype: The data-type of the output array. If not provided, the output array will be determined using `np.common_type` on the input arrays Defaults to None :type dtype: Optional[Union[type, str]], optional :param casting: Controls what kind of data casting may occur - currently unused :type casting: {"no", "equiv", "safe", "same_kind", "unsafe"], optional :returns: * * *pdarray* -- The stacked array