pyarrow.compute.any#

pyarrow.compute.any(array,/,*,skip_nulls=True,min_count=1,options=None,memory_pool=None)#

Test whether any element in a boolean array evaluates to true.

Null values are ignored by default.If theskip_nulls option is set to false, then Kleene logic is used.See “kleene_or” for more details on Kleene logic.

Parameters:
arrayArray-like

Argument to compute function.

skip_nullsbool, defaultTrue

Whether to skip (ignore) nulls in the input.If False, any null in the input forces the output to null.

min_countint, default 1

Minimum number of non-null values in the input. If the numberof non-null values is belowmin_count, the output is null.

optionspyarrow.compute.ScalarAggregateOptions, optional

Alternative way of passing options.

memory_poolpyarrow.MemoryPool, optional

If not passed, will allocate memory from the default memory pool.