numpy.nanquantile — NumPy v1.23.dev0 Manual
numpy.org › devdocs › referencenumpy.nanquantile ¶ numpy.nanquantile(a, q, axis=None, out=None, overwrite_input=False, method='linear', keepdims=<no value>, *, interpolation=None) [source] ¶ Compute the qth quantile of the data along the specified axis, while ignoring nan values. Returns the qth quantile (s) of the array elements. New in version 1.15.0. Parameters aarray_like
numpy.quantile — NumPy v1.15 Manual - SciPy
docs.scipy.org › generated › numpyAug 23, 2018 · Given a vector V of length N, the q -th quantile of V is the value q of the way from the minimum to the maximum in a sorted copy of V. 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 q exactly.
numpy.quantile — NumPy v1.22 Manual
numpy.org › generated › numpynumpy.quantile ¶ numpy.quantile(a, q, axis=None, out=None, overwrite_input=False, interpolation='linear', keepdims=False) [source] ¶ Compute the q-th quantile of the data along the specified axis. New in version 1.15.0. Parameters aarray_like Input array or object that can be converted to an array. qarray_like of float