Suppose I have 2 dataframes with overlapping column and index names that look as such:
A B C D
A 0 1 0 1
B 0 1 1 0
C 1 0 1 0
D 0 0 0 1
A C D E
A 1 0 0 0
B 0 1 0 0
D 0 0 0 0
E 1 0 0 1
I want to combine these two dataframes into one such that cells with the same column and index names are combined. The end result should look like this:
A B C D E
A 1 1 0 1 0
B 0 1 1 0 0
C 1 0 1 0 0
D 0 0 0 1 0
E 1 0 0 0 1
I've tried using the Pandas.concat method but it only concatenates along one of the axes.
align
and np.maximum
pandas.DataFrame.align
will produce a copy of the calling DataFrame
and the argument DataFrame
with their index
and column
attributes aligned and return them as a tuple
of two DataFrame
numpy.maximum
which will conveniently respect that these are pandas.DataFrame
objects and return a new DataFrame
with the appropriate maximal values.np.maximum(*df1.align(df2, fill_value=0))
A B C D E
A 1 1 0 1 0
B 0 1 1 0 0
C 1 0 1 0 0
D 0 0 0 1 0
E 1 0 0 0 1
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With