Search
Search Results
Search finished, found 17 page(s) matching the search query.
- numpy.percentile
...NumPy reference Routines and objects by topic Statistics numpy.percentile...
- numpy.percentile (Python function, in numpy.percentile)
- NumPy 1.10.0 Release Notes
...ked version of the item. Median warns and returns nan when invalid values are encountered Similar to mean, median and percentile now emits a Runtime warning and returns NaN in slices where a NaN is present. To compute the median or percen...
- NumPy 1.10.1 Release Notes
...ly for SSE4.2 processors 15cb66f BLD: do not build exclusively for SSE4.2 processors c38bc08 DOC: fix var. reference in percentile docstring 78497f4 DOC: Sync 1.10.0-notes.rst in 1.10.x branch with master....
- NumPy 1.12.0 Release Notes
...NTIGUOUS were mutually exclusive and could be set to determine the default order for arrays that are now both. The np.percentile ‘midpoint’ interpolation method fixed for exact indices The ‘midpoint’ interpolator now gives the same result...
- NumPy 1.15.0 Release Notes
...ma.stack, the numpy.stack array-joining function generalized to masked arrays. numpy.quantile function, an interface to percentile without factors of 100 numpy.nanquantile function, an interface to nanpercentile without factors of 100 numpy...
- NumPy 1.17.0 Release Notes
...n a = np.array([[Fraction(1, 2), Fraction(1, 3)], [Fraction(1, 3), Fraction(1, 2)]]) b = a @ a Changes median and percentile family of functions no longer warn about nan numpy.median, numpy.percentile, and numpy.quantile used to emit...
- NumPy 1.22.0 Release Notes
...ow has a DLPack backend. DLPack provides a common interchange format for array (tensor) data. New methods for quantile, percentile, and related functions. The new methods provide a complete set of the methods commonly found in the literatur...
- NumPy 1.8.0 Release Notes
...sorted position at once iterative partitioning. This can be used to efficiently obtain order statistics like median or percentiles of samples. partition has a linear time complexity of O(n) while a full sort has O(n log(n)). New function...
- NumPy 1.9.0 Release Notes
...ns on small arrays are significantly faster. Indexing operations now also release the GIL. Addition of nanmedian and nanpercentile rounds out the nanfunction set. Dropped Support The oldnumeric and numarray modules have been removed. Th...
- NumPy 2.0.0 Release Notes
...PyPI will get wheels built against Accelerate rather than OpenBLAS. (gh-25255) Option to use weights for quantile and percentile functions A weights keyword is now available for quantile, percentile, nanquantile and nanpercentile. Only me...
- numpy.median
...the output is the same as that of the input. If out is specified, that array is returned instead. See also mean, percentile Notes Given a vector V of length N, the median of V is the middle value of a sorted copy of V, V_sorted - i...
- numpy.nanmedian
...put is the same as that of the input. If out is specified, that array is returned instead. See also mean, median, percentile Notes Given a vector V of length N, the median of V is the middle value of a sorted copy of V, V_sorted - i...
- numpy.nanpercentile
...NumPy reference Routines and objects by topic Statistics numpy.nanpercentile...
- numpy.percentile
...NumPy reference Routines and objects by topic Statistics numpy.percentile...
- numpy.quantile
- numpy.nanpercentile (Python function, in numpy.nanpercentile)