DataFrame.append()
pandas.DataFrame.append
-
DataFrame.append(other, ignore_index=False, verify_integrity=False)
-
Append rows of
other
to the end of this frame, returning a new object. Columns not in this frame are added as new columns.Parameters: other : DataFrame or Series/dict-like object, or list of these
The data to append.
ignore_index : boolean, default False
If True, do not use the index labels.
verify_integrity : boolean, default False
If True, raise ValueError on creating index with duplicates.
Ret