Skip to content

Commit

Permalink
DOC: remove inferred insert parameter descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
erictleung committed Dec 7, 2020
1 parent d4f7ae4 commit 4ec6e21
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -3741,8 +3741,6 @@ def insert(self, loc, column, value, allow_duplicates=False) -> None:
"""
Insert column into DataFrame at specified location.
Performs column insertion in-place.
Raises a ValueError if `column` is already contained in the DataFrame,
unless `allow_duplicates` is set to True.
Expand All @@ -3753,9 +3751,7 @@ def insert(self, loc, column, value, allow_duplicates=False) -> None:
column : str, number, or hashable object
Label of the inserted column.
value : int, Series, or array-like
Input data to be inserted.
allow_duplicates : bool, optional
Whether to allow duplicate column label names.
See Also
--------
Expand Down

0 comments on commit 4ec6e21

Please sign in to comment.