madFilter-methods {xps} | R Documentation |
This method initializes the Median Absolute Deviation Filter.
The MAD Filter flags all rows with: flag = (mad >= cutoff)
Usage
madFilter(object)
madFilter(object, value)<-
object |
object of class PreFilter . |
value |
numeric vector c(cutoff, epsilon) . |
The method madFilter
initializes the following parameters:
cutoff : | the cutoff level for the filter. | |
epsilon : | value to replace mean (default is epsilon=0.01 ). |
Note, that epsilon
has no effect on mad
.
An initialized PreFilter
object.
Christian Stratowa
prefltr <- PreFilter() madFilter(prefltr) <- c(0.5,0.01) str(prefltr)