📜  Python|熊猫索引.hasnans

📅  最后修改于: 2022-05-13 01:54:41.509000             🧑  作者: Mango

Python|熊猫索引.hasnans

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

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

示例 #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属性来检查给定的 Index 对象中是否有任何缺失值。

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

输出 :

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

示例 #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属性来检查给定的 Index 对象中是否有任何缺失值。

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

输出 :

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