recarray.argmin(axis=None, out=None) Return indices of the minimum values along the given axis of a. Refer
recarray.dumps() Returns the pickle of the array as a string. pickle.loads or numpy.loads will convert the string back to
recarray.reshape(shape, order='C') Returns an array containing the same data with a new shape. Refer to
recarray.swapaxes(axis1, axis2) Return a view of the array with axis1 and axis2 interchanged
recarray.item(*args) Copy an element of an array to a standard Python scalar and return it.
recarray.flags Information about the memory layout of the array. Notes The
recarray.shape Tuple of array dimensions. Notes May be used to ?reshape? the array, as
recarray.searchsorted(v, side='left', sorter=None) Find indices where elements of v should be inserted in a to maintain
recarray.any(axis=None, out=None, keepdims=False) Returns True if any of the elements of a evaluate to True.
recarray.T Same as self.transpose(), except that self is returned if self.ndim < 2. Examples
Page 7 of 8