Skip to content

Commit 4ec6e21

Browse files
committed
DOC: remove inferred insert parameter descriptions
1 parent d4f7ae4 commit 4ec6e21

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
@@ -3741,8 +3741,6 @@ def insert(self, loc, column, value, allow_duplicates=False) -> None:
37413741
"""
37423742
Insert column into DataFrame at specified location.
37433743
3744-
Performs column insertion in-place.
3745-
37463744
Raises a ValueError if `column` is already contained in the DataFrame,
37473745
unless `allow_duplicates` is set to True.
37483746
@@ -3753,9 +3751,7 @@ def insert(self, loc, column, value, allow_duplicates=False) -> None:
37533751
column : str, number, or hashable object
37543752
Label of the inserted column.
37553753
value : int, Series, or array-like
3756-
Input data to be inserted.
37573754
allow_duplicates : bool, optional
3758-
Whether to allow duplicate column label names.
37593755
37603756
See Also
37613757
--------

0 commit comments

Comments
 (0)