recarray.ravel([order]) Return a flattened array. Refer to
recarray.newbyteorder(new_order='S') Return the array with the same data viewed with a different byte order.
recarray.any(axis=None, out=None, keepdims=False) Returns True if any of the elements of a evaluate to True.
recarray.shape Tuple of array dimensions. Notes May be used to ?reshape? the array, as
recarray.field(attr, val=None)
recarray.tofile(fid, sep="", format="%s") Write array to a file as text or binary (default). Data is always written
recarray.swapaxes(axis1, axis2) Return a view of the array with axis1 and axis2 interchanged
recarray.min(axis=None, out=None, keepdims=False) Return the minimum along a given axis. Refer to
recarray.flags Information about the memory layout of the array. Notes The
recarray.dumps() Returns the pickle of the array as a string. pickle.loads or numpy.loads will convert the string back to
Page 6 of 8