modin.pandas.DataFrame.insert¶
- DataFrame.insert(loc, column, value, allow_duplicates=_NoDefault.no_default) None[source]¶
Insert column into DataFrame at specified location.
Raises a ValueError if column is already contained in the DataFrame, unless allow_duplicates is set to True.
- Parameters:
loc (int) – Insertion index. Must verify 0 <= loc <= len(columns).
column (str, number, or hashable object) – Label of the inserted column.
value (Scalar, Series, or array-like) –
allow_duplicates (bool, optional, default lib.no_default) –
See also
Index.insertInsert new item by index.
Examples
Notice that pandas uses index alignment in case of value from type Series: