I'm comparing two cells in pandas and both are NaN.
But using '==':
df_r1_n.loc[370018, "CONCEITO"] == df_r1_n.loc[441654, "CONCEITO"])
the answer is False. I don't understand why, since they have the same missing value.
I'm comparing two cells in pandas and both are NaN.
But using '==':
df_r1_n.loc[370018, "CONCEITO"] == df_r1_n.loc[441654, "CONCEITO"])
the answer is False. I don't understand why, since they have the same missing value.