This is the formula —

Parameters:
array: Input array or object having the elements to calculate the trimmed variance.
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: Trimmed variance of the array elements based on the set parameters.
Code # 1:
|
Output:
Trimmed Variance: 35.0 Trimmed Variance by setting limit: 7.5
Code # 2: Checking "enable" flags
|
Exit:
Trimmed Variance by setting limit: 7.5 Trimmed Variance by setting limit: 6.0 Trimmed Variance by setting limit: 9.16666666667