scipy.stats.trim1 (a, proportional cut, tail = & # 39; right & # 39;) function truncates some of the elements in the array from one end of the passed array distribution.
Parameters:
arr: [array_like] Input array or object to trim.
tail: [optional] {’left’, ’right’} Defaults to right.
proportiontocut: Proportion (in range 0-1) of data to trim of each end.Results: trimmed array elements from both the ends in the given proportion.
Code # 1: Work
| < / tr>
Output:
arr1: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] clipped arr1: [0 2 1 3 4 5 6] clipped arr1: [3 4 6 5 7 8 9] clipped arr1: [1 3 2 4 5 6 7 8 9] clipped arr1: [0 2 1 3 4 5 6 7 8]