scipy.stats.tmin (array, lowerlimit = None, axis = 0, inclusive = True)
calculates the truncated minimum of array elements, and also ignores values lying outside specified limits, along a specified axis.
Parameters:
array: Input array or object having the elements to calculate the minimum .
axis: [Default is zero] Input array or object having the elements to calculate the minimum.
limits: Lower and upper bound of the array to consider, values less than the lower limit or greater than the upper limit will be ignored. If limits is None [default], then all values are used.
inclusive: Decide whether to include the values equal to lower or upper bound, or to exclude them while calculation.Returns: Geometric mean of the array elements based on the set parameters.
Code # 1:
|
Exit:
Trimmed Minimum : 1 Trimmed Minimum by setting limit: 6
Code # 2: Check various parameters
|
Exit:
Trimmed M inimum: [1 3 3] Trimmed Minimum by setting axis: [1 3 3 3] Trimmed Minimum by setting axis: [1 3 3] Trimmed Minimum by setting limit: [27 7 6 6] Trimmed Minimum by setting limit: [7 6 7]