About 400 results
Open links in new tab
  1. numpy.quantile — NumPy v2.3 Manual

    Given a sample a from an underlying distribution, quantile provides a nonparametric estimate of the inverse cumulative distribution function. By default, this is done by interpolating between …

  2. numpy.quantile — NumPy v2.0 Manual

    Finally, note that since Python uses 0-based indexing, the code subtracts another 1 from the index internally. The following formula determines the virtual index i + g, the location of the …

  3. numpy.quantile — NumPy v1.21 Manual

    Jun 22, 2021 · The values and distances of the two nearest neighbors as well as the interpolation parameter will determine the quantile if the normalized ranking does not match the location of …

  4. numpy.percentile — NumPy v2.3 Manual

    Notes The behavior of numpy.percentile with percentage q is that of numpy.quantile with argument q/100. For more information, please see numpy.quantile. References [1] R. J. …

  5. numpy.nanquantile — NumPy v2.3 Manual

    If multiple probability levels are given, first axis of the result corresponds to the quantiles. The other axes are the axes that remain after the reduction of a.

  6. numpy.random.normal — NumPy v2.3 Manual

    numpy.random.normal # random.normal(loc=0.0, scale=1.0, size=None) # Draw random samples from a normal (Gaussian) distribution. The probability density function of the normal …

  7. numpy.nanquantile — NumPy v2.1 Manual

    If multiple probability levels are given, first axis of the result corresponds to the quantiles. The other axes are the axes that remain after the reduction of a.

  8. numpy.digitize — NumPy v2.3 Manual

    numpy.digitize # numpy.digitize(x, bins, right=False) [source] # Return the indices of the bins to which each value in input array belongs.

  9. numpy.clip — NumPy v2.3 Manual

    numpy.clip # numpy.clip(a, a_min=<no value>, a_max=<no value>, out=None, *, min=<no value>, max=<no value>, **kwargs) [source] # Clip (limit) the values in an array. Given an interval, …

  10. numpy.nanquantile — NumPy v1.21 Manual

    Jun 22, 2021 · This optional parameter specifies the interpolation method to use when the desired quantile lies between two data points i < j: linear: i + (j - i) * fraction, where fraction is the …