I have 2 dataframes with different columns. And I want to combine those into 1 csv file. Both headers should be included and there shouldn’t be empty value if columns aren’t matched.
JavaScript
x
6
1
df1: Test1|Test2|Test3
2
1 | 2 | 3
3
4
df2: Test4|Test5|Test6
5
4 | 5 | 6
6
I tried to use pd.concat
, but I need the result to be like below:
JavaScript
1
5
1
Test1|Test2|Test3
2
1 | 2 | 3
3
Test4|Test5|Test6
4
4 | 5 | 6
5
Advertisement
Answer
You can do this using Pandas to_csv
and setting the mode
parameter to "a"
for the second DataFrame to avoid overwriting the contents.
JavaScript
1
3
1
df1.to_csv("output.csv", index=False)
2
df2.to_csv("output.csv", index=False, mode="a")
3