ndarray.max(axis=None, out=None) Return the maximum along a given axis. Refer to
ndarray.newbyteorder(new_order='S') Return the array with the same data viewed with a different byte order. Equivalent
ndarray.sum(axis=None, dtype=None, out=None, keepdims=False) Return the sum of the array elements over the given axis.
ndarray.cumsum(axis=None, dtype=None, out=None) Return the cumulative sum of the elements along the given axis. Refer
ndarray.__long__() <==> long(x)
ndarray.__reduce__() For pickling.
ndarray.partition(kth, axis=-1, kind='introselect', order=None) Rearranges the elements in the array in such a way that
ndarray.__getitem__ x.__getitem__(y) <==> x[y]
ndarray.argsort(axis=-1, kind='quicksort', order=None) Returns the indices that would sort this array. Refer to
ndarray.prod(axis=None, dtype=None, out=None, keepdims=False) Return the product of the array elements over the given axis
Page 3 of 13