I've list of multiple dataframes and am trying to filter multiple values in a column based on a condition.
list = [df1,df2,df3,df4] # multiple dataframes
grp_list = [con, eco, dip, pol] # multiple categories in a column
for i in list:
if i['pgp'].isin(group_list) and (i.egp == i.pgp):
i['value'] = 1
elif ~i['pgp'].isin(group):
i['value'] = 2
else:
0
df1:
pgp egp value
con con 1 # return 1 if pgp value is in the element list & pgp = egp
eco eco 1
dip health 0 # else 0
pol health 0
god con 2
ent eco 2 # return 2 if pgp value is not in the element list