recarray.max(axis=None, out=None) Return the maximum along a given axis. Refer to
recarray.sum(axis=None, dtype=None, out=None, keepdims=False) Return the sum of the array elements over the given axis.
recarray.setflags(write=None, align=None, uic=None) Set array flags WRITEABLE, ALIGNED, and UPDATEIFCOPY, respectively
recarray.astype(dtype, order='K', casting='unsafe', subok=True, copy=True) Copy of the array, cast to a specified type
recarray.resize(new_shape, refcheck=True) Change shape and size of array in-place.
recarray.choose(choices, out=None, mode='raise') Use an index array to construct a new array from a set of choices.
recarray.ctypes An object to simplify the interaction of the array with the ctypes module. This attribute creates
recarray.view(dtype=None, type=None) New view of array with the same data.
recarray.cumsum(axis=None, dtype=None, out=None) Return the cumulative sum of the elements along the given axis. Refer
recarray.base Base object if memory is from some other object. Examples The base of an
Page 3 of 8