suppose i have below df:
import pandas as pd
data_dic = {
"a": [0,0,1,2],
"b": [0,3,4,5],
"c": [6,7,8,9]
}
df = pd.DataFrame(data_dic)
Result:
a b c
0 0 0 6
1 0 3 7
2 1 4 8
3 2 5 9
I need to past value to new column from above columns based on conditions:
if df.a > 0 then value df.a
else if df.b > 0 then value df.b
else value df.c
For now i try with:
df['value'] = [x if x > 0 else 'ww' for x in df['a']]
but don't know how to input more conditions in this.
Expected result:
a b c value
0 0 0 6 6
1 0 3 7 3
2 1 4 8 1
3 2 5 9 2
Thank You for hard work.
You can also use list comprehension:
Use
numpy.select
:Difference between vectorized and loop solutions in 400k rows:
You can write a function that takes a row in as a parameter, tests whatever conditions you want to test, and returns a
True
orFalse
result - which you can then use as a selection tool. (Though on rereading of your question, this may not be what you're looking for - see part 2 below)Perform a Selection
apply
this function to your dataframe, and use the returned series of True/False answers as an index to select values from the actual dataframe itself.e.g.
You can build whatever logic you like, just ensure it returns True when you want a match and False when you don't.
Then try something like
And it will return a Series of True-False answers. Plug that into your df to select only those rows that have a
True
value calculated for them.And that should give you what you want.
Part 2 - Perform a Calculation
If you want to create a new column containing some calculated result - then it's a similar operation, create a function that performs your calculation:
Only this time,
apply
the result and assign it to a new column name:And this will give you that result.