BigQuery DataFrames (BigFrames)
Section Navigation
Return the maximum value of the Index.
Examples:
>>>idx=bpd.Index([3,2,1])>>>int(idx.max())3
>>>idx=bpd.Index(['c','b','a'])>>>idx.max()'c'
Maximum value.
scalar
Index.max()