recarray.argmin(axis=None, out=None) Return indices of the minimum values along the given axis of a. Refer
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.tobytes(order='C') Construct Python bytes containing the raw data bytes in the array. Constructs Python
recarray.partition(kth, axis=-1, kind='introselect', order=None) Rearranges the elements in the array in such a way
recarray.tofile(fid, sep="", format="%s") Write array to a file as text or binary (default). Data is always written
recarray.searchsorted(v, side='left', sorter=None) Find indices where elements of v should be inserted in a to maintain
recarray.swapaxes(axis1, axis2) Return a view of the array with axis1 and axis2 interchanged
recarray.put(indices, values, mode='raise') Set a.flat[n] = values[n] for all n in indices.
recarray.T Same as self.transpose(), except that self is returned if self.ndim < 2. Examples
Page 7 of 8