bigframes.pandas.MultiIndex.max# MultiIndex.max() → Any# 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