누락값 처리¶ In [1]: from numpy import NaN, NAN, nan In [2]: print(NaN ==True) False In [3]: print(NaN == True) False In [4]: # 값 자체가 없으므로 자신과 비교해도 false print((NaN ==NaN)) False 누락값을 확인하는 메서드 isnull, notnull In [5]: import pandas as pd print(pd.isnull(NaN)) True In [6]: print(pd.isnull(nan)) True In [7]: print(pd.isnull(NAN)) True In [8]: print(pd.notnull(NaN)) False In [9]: print(pd.notnull(42)) Tr..