Skip to content

Commit f98db69

Browse files
farhanreynaldojbrockmendel
authored andcommitted
DOC: Fix error in Series.clip and DataFrame.clip (pandas-dev#33282)
1 parent c1f2906 commit f98db69

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/core/generic.py

+6
Original file line numberDiff line numberDiff line change
@@ -7299,6 +7299,12 @@ def clip(
72997299
Same type as calling object with the values outside the
73007300
clip boundaries replaced.
73017301
7302+
See Also
7303+
--------
7304+
Series.clip : Trim values at input threshold in series.
7305+
DataFrame.clip : Trim values at input threshold in dataframe.
7306+
numpy.clip : Clip (limit) the values in an array.
7307+
73027308
Examples
73037309
--------
73047310
>>> data = {'col_0': [9, -3, 0, -1, 5], 'col_1': [-2, -7, 6, 8, -5]}

0 commit comments

Comments
 (0)