scipy.stats.tmin

scipy.stats.tmin(a, lowerlimit=None, axis=0, inclusive=True)

Compute the trimmed minimum

This function finds the miminum value of an array a along the specified axis, but only considering values greater than a specified lower limit.

Parameters :

a : array_like

array of values

lowerlimit : None or float, optional

Values in the input array less than the given limit will be ignored. When lowerlimit is None, then all values are used. The default value is None.

axis : None or int, optional

Operate along this axis. None means to use the flattened array and the default is zero

inclusive : {True, False}, optional

This flag determines whether values exactly equal to the lower limit are included. The default value is True.

Returns :

tmin: float :

Previous topic

scipy.stats.tvar

Next topic

scipy.stats.tmax

This Page