Answers for "dataframe append in python according to column header"

0

append one column pandas dataframe

df1 = df1.join(df2[column])
Posted by: Guest on March-16-2021
0

append data to column in pan

In [35]:

df1 = pd.DataFrame.from_items([('A', [1, 2, 3]), ('B', [4, 5, 6])])
df2 = pd.DataFrame.from_items([('B', [5, 6, 7]), ('A', [8, 9, 10])])
df3 = pd.DataFrame.from_items([('C', [5, 6, 7]), ('D', [8, 9, 10]), ('A',[1,2,3]), ('B',[4,5,7])])
df_list = [df1,df2,df3[['A','B']]]
pd.concat(df_list, ignore_index=True)
Out[35]:
    A  B
0   1  4
1   2  5
2   3  6
3   8  5
4   9  6
5  10  7
6   1  4
7   2  5
8   3  7
Posted by: Guest on October-03-2020

Code answers related to "dataframe append in python according to column header"

Python Answers by Framework

Browse Popular Code Answers by Language