📜  Python|熊猫索引.any()

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

Python|熊猫索引.any()

Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。

Pandas Index.any()函数检查索引中的任何元素是否为真。如果未指定轴,则返回一个布尔值。如果索引中的任何一个值为真,则返回真。如果索引中的值都不为真,则返回假。

注意:它将 0 视为值。

示例 #1:使用Index.any()函数检查索引中的所有值是否为真。

# importing pandas as pd
import pandas as pd
  
# Creating the Index
df = pd.Index([17, 69, 33, 5, 0, 74, 0])
  
# Print the dataframe
df

输出 :

让我们检查索引中的任何值是否为真或是否具有所有假值。

# to check if there is any false 
# value present in the index
df.any()

输出 :

正如我们在输出中看到的那样,该函数返回了 true,表明索引中至少存在一个 true 值。示例 #2:使用Index.any()函数检查索引中的任何值是否为真。

# importing pandas as pd
import pandas as pd
  
# Creating the Index
df = pd.Index([0, 0, 0, 0, 0])
  
# Print the dataframe
df

输出 :

让我们检查索引中的任何值是否为真或是否具有所有假值。

# to check if there is any false
#  value present in the index
df.any()

输出 :