pandas 0.9.1 documentation

pandas.Series.max

Series.max(axis=None, out=None, skipna=True, level=None)

Return maximum of values NA/null values are excluded

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 :

max : float (or Series if level specified)