This is documentation for an old release of SciPy (version 0.12.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Trims the smallest and largest data values.
Trims the data by masking the int(proportiontocut * n) smallest and int(proportiontocut * n) largest values of data along the given axis, where n is the number of unmasked values before trimming.
Parameters : | data : ndarray
proportiontocut : float, optional
inclusive : {(bool, bool) tuple}, optional
axis : int, optional
|
---|