I have a pandas dataframe and I need to create a new column based on an if-else condition. This question already came up here multiple times (e.g., Creating a new column based on if-elif-else condition).
However, I cannot apply the proposed solution, since I also need to look up values in a list in order to check the condition. I cannot do this with the proposed solution, because I am not sure how I can access my lookup-list in the external function. My lookup-list would need to be global, which I want to avoid. I have the feeling there should be a better way to do this.
Consider the following dataframe df
:
letters
A
B
C
D
E
F
I also have a list which contains lookup values:
lookup = [C,D]
Now, I want to create a new column in my dataframe which contains 1
if the respective value is contained in lookup
and 0
if the values is not in lookup
.
The typical approach would be:
df.apply(helper, axis=1)
def helper(row):
if(row['letters'].isin(lookup)):
row['result'] = 1
else:
row['result'] = 0
However, I do not know how I can access lookup
in helper()
without making it global.
The result should look like this:
letters result
A 0
B 0
C 1
D 1
E 0
F 0