Mapper for data detrending.
Functions
| borrowkwargs(cls[, methodname, exclude]) | Return a decorator which would borrow docstring for **kwargs :Parameters: methodname : None or str Name of the method from which to borrow. |
| is_sequence_type | isSequenceType(a) – Return True if a has a sequence type, False otherwise. |
| legendre(n[, monic]) | Returns the nth order Legendre polynomial, P_n(x), orthogonal over [-1,1] with weight function 1. |
| legendre_(n, x) | Helper to avoid problems with scipy 0.8.0 returning inf for -1 Scipy 0.8.0 (and possibly later) has regression of reporting ‘inf’s for negative boundary. |
| poly_detrend(ds, **kwargs) | In-place polynomial detrending. |
Classes
| Mapper(**kwargs) | Basic mapper interface definition. |
| PolyDetrendMapper([polyord, chunks_attr, ...]) | Mapper for regression-based removal of polynomial trends. |