Я думаю, вы можете заменить отсутствующие значения пустыми списками перед сравнением:
df_out[['A','B']] = df_out[['A','B']].applymap(lambda x: [] if x != x else x)
Или:
df_out[['A','B']] = df_out[['A','B']].applymap(lambda x: x if isinstance(x, list) else [])
#alternative
#df_out[['A','B']] = df_out[['A','B']].applymap(lambda x: [] if isinstance(x, float) else x)
print (df_out)
A B
0 [2000.0, 2000.0, 0.0] [2200.0, 0.0, 2200.0]
1 [2200.0, 0.0, 0.0] [2200.0, 2200.0, 2200.0]
2 [2200.0, 2200.0, 2200.0] [200.0, 200.0, 200.0]
3 [200.0, 200.0, 200.0] [200.0, 0.0, 200.0]
4 [160.0, 160.0, 160.0] []
Тестирование :
def comp(A,B):
try:
a= set(A)
b= set(B)
return ((a == b) and (len(a) == 1) and (len(b) == 1))
except TypeError:
return False
Или:
def comp(A,B):
try:
return (set(A) == set(B)) and (len(set(A)) == 1) and (len(set(B)) == 1)
except TypeError:
return False
for ins, rw in df_out.iterrows():
val = comp(rw.Previous_Three, rw.Next_Three)
print (val)
False
False
True
False
False