Skip to content

Commit e4bfb0c

Browse files
committed
DOC: remove inferred insert parameter descriptions
1 parent d5a4629 commit e4bfb0c

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/core/frame.py

-4
Original file line numberDiff line numberDiff line change
@@ -3677,8 +3677,6 @@ def insert(self, loc, column, value, allow_duplicates=False) -> None:
36773677
"""
36783678
Insert column into DataFrame at specified location.
36793679
3680-
Performs column insertion in-place.
3681-
36823680
Raises a ValueError if `column` is already contained in the DataFrame,
36833681
unless `allow_duplicates` is set to True.
36843682
@@ -3689,9 +3687,7 @@ def insert(self, loc, column, value, allow_duplicates=False) -> None:
36893687
column : str, number, or hashable object
36903688
Label of the inserted column.
36913689
value : int, Series, or array-like
3692-
Input data to be inserted.
36933690
allow_duplicates : bool, optional
3694-
Whether to allow duplicate column label names.
36953691
36963692
See Also
36973693
--------

0 commit comments

Comments
 (0)