bigframes.pandas.Index.min# Index.min() → Any[source]# 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