Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python - Pandas Index의 어떤 항목이 NA인지 표시

<시간/>

Pandas Index의 어떤 항목이 NA인지 표시하려면 index.isna()를 사용하세요. 판다에서. 먼저 필요한 라이브러리를 가져옵니다 -

pdimport numpy로 np로 팬더 가져오기

일부 NaN 값으로 Pandas 인덱스 생성 -

인덱스 =pd.Index([5, 65, np.nan, 17, 75, np.nan])

판다 인덱스 표시 -

print("판다 인덱스...\n",index)

Pandas 색인의 어떤 항목이 NA인지 표시합니다. NA 항목에 대해 True 반환 -

print("\n어떤 항목이 NA인지 확인...\n", index.isna())

다음은 코드입니다 -

import pandas as pdimport numpy as np# 일부 NaN 값으로 Pandas 인덱스 생성index =pd.Index([5, 65, np.nan, 17, 75, np.nan])# Pandas indexprint("Pandas Index ...\n",index)# Indexprint("\nNumber of elements in the index...\n",index.size)# Return the dtype of dataprint("\nThe dtype object...\n",index.dtype)# Pandas 인덱스에서 어떤 항목이 NA인지 표시# NA 항목에 대해 True를 반환합니다.print("\nCheck which 항목이 NA...\n", index.isna()) 

출력

이것은 다음과 같은 출력을 생성합니다 -

Pandas Index...Float64Index([5.0, 65.0, nan, 17.0, 75.0, nan], dtype='float64')인덱스의 요소 수...6dtype 객체...float64어떤 항목이 NA인지 확인 ...[거짓 거짓 참 거짓 거짓 참]