diff --git a/pandas/core/series.py b/pandas/core/series.py index 4cf29319f703e..d8bdd9ac9ed22 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -1837,7 +1837,7 @@ def round(self, decimals=0, *args, **kwargs): def quantile(self, q=0.5, interpolation='linear'): """ - Return value at the given quantile, a la numpy.percentile. + Return value at the given quantile. Parameters ---------- @@ -1876,6 +1876,7 @@ def quantile(self, q=0.5, interpolation='linear'): See Also -------- pandas.core.window.Rolling.quantile + numpy.percentile """ self._check_percentile(q)