ndarray.dumps() Returns the pickle of the array as a string. pickle.loads or numpy.loads will convert the string back to
ndarray.__int__() <==> int(x)
ndarray.__deepcopy__() ? Deep copy of array. Used if copy.deepcopy is called on an array.
ndarray.size Number of elements in the array. Equivalent to np.prod(a.shape), i.e., the product of
ndarray.compress(condition, axis=None, out=None) Return selected slices of this array along given axis. Refer to
ndarray.getfield(dtype, offset=0) Returns a field of the given array as a certain type. A field is a view of the
ndarray.item(*args) Copy an element of an array to a standard Python scalar and return it.
ndarray.__gt__ x.__gt__(y) <==> x>y
ndarray.min(axis=None, out=None, keepdims=False) Return the minimum along a given axis. Refer to
ndarray.base Base object if memory is from some other object. Examples The base of an array
Page 1 of 13