Skip to content
Advertisement

Changing values of one column based on the other three columns in pandas dataframe

I have a following Pandas dataframe, where I want to change a value of ‘fmc’ column based on ‘time’, ‘samples’ and ‘uid’ columns.

Concept is as following:

For the same date, if df.samples == 'C' & df.uid == 'Plot1', then corresponding row value of fmc * 0.4

similarly for the same date, if df.samples == 'C' and df.uid == 'Plot2', then corresponding row value of fmc*0.8

For the same date, if df.samples == 'E' & df.uid == 'Plot1', then corresponding row value of fmc * 0.4

similarly for the same date, if df.samples == 'E' and df.uid == 'Plot2', then corresponding row value of fmc*0.15

For the same date, if df.samples == 'ns' & df.uid == 'Plot1', then corresponding row value of fmc * 0.2

similarly for the same date, if df.samples == 'ns' and df.uid == 'Plot2', then corresponding row value of fmc*0.05

I am new to python, so I apologize if I couldn’t explain well and please let me know if you need more clarification.

JavaScript

Advertisement

Answer

This code:

JavaScript

Should produce this output:

JavaScript

Inspired by df.apply, using axis=1, and passing a lambda function containing full set of the conditions, you will have the expected values in result column.

The apply function will pass the dataframe’s columns (because axis=1), to the lambda function as item for each record in the series of values. The lambda function also, returns the corresponding result value for each given record/item in the series, so we don’t need to worry about matching date/index values.

Reference for pandas.DataFrame.apply here.

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