From d9ed638f1165495f1ed4bac4fbf42b285619a1e4 Mon Sep 17 00:00:00 2001 From: Peter Li Date: Wed, 22 Aug 2018 21:37:23 +0800 Subject: [PATCH] DOC: change confusing wording in Dataframe.quantile to match with Series.quantile #22463 --- pandas/core/frame.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 052952103e28c..b79c83cccd5ab 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -7249,8 +7249,7 @@ def f(s): def quantile(self, q=0.5, axis=0, numeric_only=True, interpolation='linear'): """ - Return values at the given quantile over requested axis, a la - numpy.percentile. + Return values at the given quantile over requested axis. Parameters ---------- @@ -7315,6 +7314,7 @@ def quantile(self, q=0.5, axis=0, numeric_only=True, See Also -------- pandas.core.window.Rolling.quantile + numpy.percentile """ self._check_percentile(q)