On this page
pandas.DataFrame.insert
DataFrame.insert(loc, column, value, allow_duplicates=False)
-
Insert column into DataFrame at specified location.
If
allow_duplicates
is False, raises Exception if column is already contained in the DataFrame.Parameters: loc : int
Must have 0 <= loc <= len(columns)
column : object
value : int, Series, or array-like
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/0.18.1/generated/pandas.DataFrame.insert.html