I have problem by detecting 'nan' in pandas dataframe if column is float64 data type. Both comparsion operators ('nan' == for 'nan', 'NaN', np.nan) and functions sucha as .isnull() do not work.
Moreover this making me crazy:
np.float64(np.nan) == np.float64(np.nan)
out: False
Can anyone explain that issue?