pandas.DataFrame.append() function with example in python | 2019

Spread the love

pandas.DataFrame.append(): This function columns in other that are not in the caller are added as new columns.

Syntax: DataFrame.append(other, ignore_index=False, verify_integrity=False, sort=None)
Append rows of other to the end of caller, returning a new object.

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.

sort : boolean, default None
Sort columns if the columns of self and other are not aligned. The default sorting is deprecated and will change to not-sorting in a future version of pandas. Explicitly pass sort=True to silence the warning and sort. Explicitly pass sort=False to silence the warning and not sort.

Returns:
appended : DataFrame

 

#Example program on pandas.DataFrame.append() function

import pandas as pd df1 = pd.DataFrame({'x': [1, 2, 2,3], 'y': [10,20,30,40]}) df2 = pd.DataFrame({'x': [4,5], 'y': [50,60]}) df1=df1.append(df2) print(df1)

Output:

   x   y
0  1  10
1  2  20
2  2  30
3  3  40
0  4  50
1  5  60

 

admin

admin

Leave a Reply

Your email address will not be published. Required fields are marked *