BigQuery DataFrames (BigFrames)
Section Navigation
Return whether any element is Truthy.
Examples:
>>>index=bpd.Index([0,1,2])>>>bool(index.any())True
>>>index=bpd.Index([0,0,0])>>>bool(index.any())False
A single element array-like may be converted to bool.
bool
TypeError – MultiIndex with more than 1 level does not supportany.
any
MultiIndex.any()