본문 바로가기
파이썬

파이썬 Check if single cell value is NaN in Pandas

by º기록 2020. 12. 3.
반응형

Pandas 시리즈의 단일 셀이 null인지 여부, 즉 값이 NaN 인지 확인하고 싶습니다.

다른 모든 답변은 시리즈 및 배열에 대한 것이지만 단일 값에는 해당되지 않습니다.

pandas.notnull , pandas.isnull , numpy.isnan 을 시도했습니다. 단일 값만을위한 솔루션이 있습니까?

 

해결 방법

 

이 시도:

import pandas as pd
import numpy as np
from pandas import *

>>> L = [4, nan ,6]
>>> df = Series(L)

>>> df
0     4
1   NaN
2     6

>>> if(pd.isnull(df[1])):
        print "Found"

Found

>>> if(np.isnan(df[1])):
        print "Found"

Found

 

참조 페이지 https://stackoverflow.com/questions/27754891

 

 

반응형

댓글