bigframes.pandas.Index.max# Index.max() → Any[source]# 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' Returns: Maximum value. Return type: scalar