recarray.take(indices, axis=None, out=None, mode='raise') Return an array formed from the elements of a at the
recarray.repeat(repeats, axis=None) Repeat elements of an array. Refer to
recarray.dumps() Returns the pickle of the array as a string. pickle.loads or numpy.loads will convert the string back to
recarray.conjugate() Return the complex conjugate, element-wise. Refer to numpy.conjugate for full
recarray.partition(kth, axis=-1, kind='introselect', order=None) Rearranges the elements in the array in such a way
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
recarray.argmin(axis=None, out=None) Return indices of the minimum values along the given axis of a. Refer
recarray.reshape(shape, order='C') Returns an array containing the same data with a new shape. Refer to
recarray.ptp(axis=None, out=None) Peak to peak (maximum - minimum) value along a given axis. Refer to
Page 6 of 8