Skip to content
Advertisement

Pandas subtract each column in dataframe_a from all columns of dataframe_b and write result to third dataframe

I have dataframe_a and dataframe_b filled with an variable number of columns but the same number of rows.

I need to subtract each column of dfb from all dfa columns and create a new dataframe containing the subtracted values.

Right now I’m doing this manually:

JavaScript

then I’m using the concat function to concatenate all the columns:

JavaScript

This all seems horribly inefficient and makes me feel quite bad a programming lol. How would you do this without having to subtract each column manually and directly write the results to a new dataframe?

Advertisement

Answer

Setup

JavaScript

Pandas’ concat

I use the operator method rsub with the axis=0 argument. See this Q&A for more information

JavaScript

Numpy’s broadcasting

You can play around with it and learn how it works

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement