ndarray.__contains__

ndarray.__contains__ x.__contains__(y) <==> y in x

generic.std()

generic.std() Not implemented (virtual attribute) Class generic exists solely to derive numpy scalars from, and possesses, albeit unimplemented, all the attributes of the ndarray class so as to provide a uniform API. See also The

nditer.remove_multi_index()

nditer.remove_multi_index() When the ?multi_index? flag was specified, this removes it, allowing the internal iteration structure to be optimized further.

matrix.conj()

matrix.conj() Complex-conjugate all elements. Refer to numpy.conjugate for full documentation. See also numpy.conjugate equivalent function

generic.dump()

generic.dump() Not implemented (virtual attribute) Class generic exists solely to derive numpy scalars from, and possesses, albeit unimplemented, all the attributes of the ndarray class so as to provide a uniform API. See also The

ndarray.__getslice__

ndarray.__getslice__ x.__getslice__(i, j) <==> x[i:j] Use of negative indices is not supported.

dtype.num

dtype.num A unique number for each of the 21 different built-in types. These are roughly ordered from least-to-most precision.

numpy.random.poisson()

numpy.random.poisson(lam=1.0, size=None) Draw samples from a Poisson distribution. The Poisson distribution is the limit of the binomial distribution for large N. Parameters: lam : float or sequence of float Expectation of interval, should be >= 0. A sequence of expectation intervals must be broadcastable over the requested size. size : int or tuple of ints, optional Output shape. If the given shape is, e.g., (m, n, k), then m * n * k samples are drawn. Default is None, in which case

MaskedArray.std()

MaskedArray.std(axis=None, dtype=None, out=None, ddof=0) [source] Compute the standard deviation along the specified axis. Returns the standard deviation, a measure of the spread of a distribution, of the array elements. The standard deviation is computed for the flattened array by default, otherwise over the specified axis. Parameters: a : array_like Calculate the standard deviation of these values. axis : None or int or tuple of ints, optional Axis or axes along which the standard dev

numpy.percentile()

numpy.percentile(a, q, axis=None, out=None, overwrite_input=False, interpolation='linear', keepdims=False) [source] Compute the qth percentile of the data along the specified axis. Returns the qth percentile(s) of the array elements. Parameters: a : array_like Input array or object that can be converted to an array. q : float in range of [0,100] (or sequence of floats) Percentile to compute, which must be between 0 and 100 inclusive. axis : {int, sequence of int, None}, optional Axis