Skip to content

Commit 2be2ba5

Browse files
peterpanmjWillAyd
authored andcommitted
DOC: change confusing wording in Dataframe.quantile to match with Series.quantile #22463 (#22464)
1 parent 25e6a21 commit 2be2ba5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/frame.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7249,8 +7249,7 @@ def f(s):
72497249
def quantile(self, q=0.5, axis=0, numeric_only=True,
72507250
interpolation='linear'):
72517251
"""
7252-
Return values at the given quantile over requested axis, a la
7253-
numpy.percentile.
7252+
Return values at the given quantile over requested axis.
72547253
72557254
Parameters
72567255
----------
@@ -7315,6 +7314,7 @@ def quantile(self, q=0.5, axis=0, numeric_only=True,
73157314
See Also
73167315
--------
73177316
pandas.core.window.Rolling.quantile
7317+
numpy.percentile
73187318
"""
73197319
self._check_percentile(q)
73207320

0 commit comments

Comments
 (0)