Skip to content
Advertisement

Apply function to every cell in DataFrame and include value from specific column

Say I have a pandas DataFrame like so:

JavaScript

I would like to perform an operation on each cell in columns ‘a’ and ‘b’ that includes both the cell value and the value of the ‘add’ column for that row. Here’s an example operation:

JavaScript

I know I can do this with df.apply, but I haven’t been able to figure out how to add the value in the add column to the function. My guess is the syntax is close to this, but I haven’t gotten it to work:

JavaScript

What’s the best way to do this in pandas? It doesn’t have to be the most efficient, but I would like it to be good pandas code.

EDIT:

The output should look like this:

JavaScript

Advertisement

Answer

Vectorize add_vals method with numpy.where:

JavaScript

The method gives the transformation of a single column if you pass in a or b with the add column as 2nd parameter:

JavaScript

And then you can apply the method to each column (a and b) you want to transform:

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