pandas.Series.min

Series.min(axis=None, out=None, skipna=True, level=None)
Parameters :

skipna : boolean, default True

Exclude NA/null values

level : int, default None

If the axis is a MultiIndex (hierarchical), count along a particular level, collapsing into a smaller Series

Returns :

min : float (or Series if level specified)

See also

Return, NA

Notes

This method returns the minimum of the values in the Series. If you want the index of the minimum, use Series.idxmin. This is the equivalent of the numpy.ndarray method argmin.