bigframes.pandas.MultiIndex.min# MultiIndex.min() → Any# Return the minimum value of the Index. Examples: >>> idx = bpd.Index([3, 2, 1]) >>> int(idx.min()) 1 >>> idx = bpd.Index(['c', 'b', 'a']) >>> idx.min() 'a' Returns: Minimum value. Return type: scalar