bundles / scipy latest / scipy / stats / _stats_py / trimboth
function
scipy.stats._stats_py:trimboth
source: /scipy/stats/_stats_py.py :3462
Signature
def trimboth ( a , proportiontocut , axis = 0 ) Summary
Slice off a proportion of items from both ends of an array.
Extended Summary
Slice off the passed proportion of items from both ends of the passed array (i.e., with proportiontocut = 0.1, slices leftmost 10% and rightmost 10% of scores). The trimmed values are the lowest and highest ones. Slice off less if proportion results in a non-integer slice index (i.e. conservatively slices off proportiontocut).
Parameters
a: array_likeData to trim.
proportiontocut: floatProportion (in range 0-1) of total data set to trim of each end.
axis: int or None, optionalAxis along which to trim data. Default is 0. If None, compute over the whole array
a.
Returns
out: ndarrayTrimmed version of array
a. The order of the trimmed content is undefined.
Notes
Array API Standard Support
trimboth has experimental support for Python Array API Standard compatible backends in addition to NumPy. Please consider testing these features by setting an environment variable SCIPY_ARRAY_API=1 and providing CuPy, PyTorch, JAX, or Dask arrays as array arguments. The following combinations of backend and device (or other capability) are supported.
==================== ==================== ==================== Library CPU GPU ==================== ==================== ==================== NumPy ✅ n/a CuPy n/a ⛔ PyTorch ⛔ ⛔ JAX ⛔ ⛔ Dask ⛔ n/a ==================== ==================== ====================
See
dev-arrayapifor more information.
Examples
Create an array of 10 values and trim 10% of those values from each end:import numpy as np from scipy import stats a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] stats.trimboth(a, 0.1)✓
b = np.arange(10) stats.trimboth(b, 1/4).shape✓
c = [2, 4, 6, 8, 0, 1, 3, 5, 7, 9] d = np.array([a, b, c]) stats.trimboth(d, 0.4, axis=0).shape stats.trimboth(d, 0.4, axis=1).shape stats.trimboth(d, 0.4, axis=None).shape✓
See also
Aliases
-
scipy.stats.trimboth