Skip to content

Commit dd91539

Browse files
uds5501jorisvandenbossche
authored andcommitted
DOC: Fixing 'a la' confusion in series.quantile documentation (#21293)
1 parent 7dc6f70 commit dd91539

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/series.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1837,7 +1837,7 @@ def round(self, decimals=0, *args, **kwargs):
18371837

18381838
def quantile(self, q=0.5, interpolation='linear'):
18391839
"""
1840-
Return value at the given quantile, a la numpy.percentile.
1840+
Return value at the given quantile.
18411841
18421842
Parameters
18431843
----------
@@ -1876,6 +1876,7 @@ def quantile(self, q=0.5, interpolation='linear'):
18761876
See Also
18771877
--------
18781878
pandas.core.window.Rolling.quantile
1879+
numpy.percentile
18791880
"""
18801881

18811882
self._check_percentile(q)

0 commit comments

Comments
 (0)