pandas.Series.quantile
-
Series.quantile(q=0.5, interpolation='linear')
[source] -
Return value at the given quantile.
Parameters: -
q : float or array-like, default 0.5 (50% quantile)
-
0 <= q <= 1, the quantile(s) to compute
-
interpolation : {‘linear’, ‘lower’, ‘higher’, ‘midpoint’, ‘nearest’}
-
New in version 0.18.0.
This optional parameter specifies the interpolation method to use, when the desired quantile lies between two data points
i
andj
:- linear:
i + (j - i) * fraction
, wherefraction
is the fractional part of the index surrounded byi
andj
. - lower:
i
. - higher:
j
. - nearest:
i
orj
whichever is nearest. - midpoint: (
i
+j
) / 2.
- linear:
Returns: -
quantile : float or Series
-
if
q
is an array, a Series will be returned where the index isq
and the values are the quantiles.
See also
Examples
>>> s = pd.Series([1, 2, 3, 4]) >>> s.quantile(.5) 2.5 >>> s.quantile([.25, .5, .75]) 0.25 1.75 0.50 2.50 0.75 3.25 dtype: float64
-
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/0.24.2/reference/api/pandas.Series.quantile.html