Skip to content
Advertisement

How can I combine different dataframes into one csv in Python?

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

I tried to use pd.concat, but I need the result to be like below:

JavaScript

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
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement