Python Pandas Index. hasnans

Python Pandas Index. hasnans

Pandas Index是一个不可变的ndarray,实现了一个有序的、可切分的集合。它是存储所有pandas对象的轴标签的基本对象。

Pandas Index. hasnans属性如果在给定的索引对象中存在任何缺失的值,则返回True,否则它返回False,表明在给定的索引对象中没有缺失值。

语法: Index.hasnans

参数:

返回 : 布尔值

例子#1:使用Index. hasnans属性来检查给定的Index对象中是否有任何丢失的值。

# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index(['Jan', 'Feb', 'Mar', 'Apr', 'May'])
  
# Print the index
print(idx)

现在我们将使用Index. hasnans属性来检查在给定的索引对象中是否有任何缺失的值。

# check if there is any
# missing value
result = idx.hasnans
  
# Print the result
print(result)

正如我们在输出中看到的,Index.hasans属性返回了False,表明在给定的索引对象中没有缺失的值。

例子#2 :使用Index. hasnans属性来检查给定的Index对象中是否有任何缺失的值。

# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index(['2012-12-12', None, '2002-1-10', None])
  
# Print the index
print(idx)

现在我们将使用Index. hasnans属性来检查在给定的索引对象中是否有任何缺失的值。

# check if there is any
# missing value
result = idx.hasnans
  
# Print the result
print(result)

正如我们在输出中看到的,Index.hasans属性返回了True,表明在给定的索引对象中存在一些缺失的值。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程