Python Pandas Index.any()
Python是一种进行数据分析的伟大语言,主要是因为以数据为中心的Python包的奇妙生态系统。Pandas就是这些包中的一个,它使导入和分析数据变得更加容易。
Pandas Index.any()函数检查索引中的任何元素是否为真。如果没有指定轴,它返回一个单一的布尔值。如果索引中的任何一个值是真的,它就会返回true。如果索引中没有一个值是真的,则返回false。
注意:它将0视为假值。
语法: Index.any(*args, **kwargs)
参数 :
*args :这些参数将被传递给numpy.any
**kwargs :这些参数将被传递给numpy.any
返回 : any : bool 或 array_like (如果指定了轴)
单个元素array_like可以被转换为bool。
例子#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()
输出 :
正如我们在输出中所看到的,该函数返回了真,表明在索引中至少有一个真值存在。
例子#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()
输出 :