recarray.newbyteorder(new_order='S') Return the array with the same data viewed with a different byte order.
recarray.ravel([order]) Return a flattened array. Refer to
recarray.tolist() Return the array as a (possibly nested) list. Return a copy of the array data as a (nested) Python
recarray.size Number of elements in the array. Equivalent to np.prod(a.shape), i.e., the product of
recarray.take(indices, axis=None, out=None, mode='raise') Return an array formed from the elements of a at the
recarray.getfield(dtype, offset=0) Returns a field of the given array as a certain type. A field is a view of
recarray.byteswap(inplace) Swap the bytes of the array elements Toggle between low-endian and big-endian data
recarray.repeat(repeats, axis=None) Repeat elements of an array. Refer to
recarray.dump(file) Dump a pickle of the array to the specified file. The array can be read back with pickle.load or numpy
recarray.ndim Number of array dimensions. Examples >>>
Page 5 of 8