Python | Pandas Index.hasnans
Pandas Index - это неизменяемый ndarray, реализующий упорядоченный, нарезанный набор. Это базовый объект, который хранит метки осей для всех объектов pandas.
Pandas Index.hasnans attribute return True if there is any missing value in the given Index object otherwise it return False indicating there is no missing values in the given Index object.
Syntax: Index.hasnans
Parameter : None
Returns : boolean
Example #1: Use Index.hasnans attribute to check if there is any missing value in the given Index object.
# importing pandas as pdimport pandas as pd # Creating the indexidx = pd.Index(["Jan", "Feb", "Mar", "Apr", "May"]) # Print the indexprint(idx) |
Выход :

Now we will use Index.hasnans attribute to check if there is any missing value in the given Index object.
# check if there is any# missing valueresult = idx.hasnans # Print the resultprint(result) |
Выход :

As we can see in the output, the Index.hasnans attribute has returned False indicating there is no missing value in the given Index object.
Example #2 : Use Index.hasnans attribute to check if there is any missing value in the given Index object.
Выход :

Now we will use Index.hasnans attribute to check if there is any missing value in the given Index object.
# check if there is any# missing valueresult = idx.hasnans # Print the resultprint(result) |
Выход :

As we can see in the output, the Index.hasnans attribute has returned True indicating there is some missing values in the given Index object.
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.