cutoffByMMAD {NanoStringQCPro} | R Documentation |
Determine cutoffs of x (for outlier detection) based on median
cutoffByMMAD(x, d, ...)
x |
numeric vector |
d |
scalar numeric, factor by which to multiply MAD of x |
... |
additional parameters passed on to median() |
A list of length 2, with a scalar numeric in each slot, one giving the lower threshold (median(x) - d * mad(x)), the other giving the upper threshold (median(x) + d * mad(x)) for outlier definition.
Dorothee Nickles