My question is: How can I simplify my table with Pandas, to get only one column with the selected values (the three columns should be one).
Name Selection Active Inactive
A active 0 0.9
B active 1 0.8
C inactive 2 0.7
D inactive 3 0.6
E active 4 0.5
Like IF Selection = 'active' THEN Active ELSE Inactive as Selected_Value
to get the following result:
Name Selected_Value
A 0
B 1
C 0.7
D 0.6
E 4