Description Usage Arguments Details Value Author(s) See Also
Distribution based outlier detection functions.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | proportion.outliers.robust(x, alpha = 0.01, isUpper = TRUE,
isLower = TRUE)
proportion.outliers.mle(x, alpha = 0.01, isUpper = TRUE,
isLower = TRUE)
qoutlier(x, alpha = 1.5, isUpper = TRUE, isLower = TRUE,
plot = FALSE, ...)
outlier.norm(x, alpha = 0.01, z.cutoff = NULL, isUpper = TRUE,
isLower = TRUE, plot = FALSE)
outlier.t(x, alpha = 0.01, z.cutoff = NULL, isUpper = TRUE,
isLower = TRUE, plot = FALSE)
outlier.cutoff(x, lBound = NULL, uBound = NULL)
|
x |
An integer/numeric vector used as the input |
alpha, z.cutoff |
alpha is the percentage of the standard deviation from the center of the data. z.cutoff is the standardized z-score value. They are used as the distribution based thresholds. |
isUpper, isLower |
logical scalars indicating whether the outliers are checked at upper or lower side of the distribution. |
plot |
logical scalar indicating whether to visualize the outlier detection results. |
... |
other arguments to be passed to qoutlier function,currently it is ignored. |
lBound, uBound |
Numeric scalars used as cutoff threshold for either lower limit or upper limit |
These different outlier detection functions are used together with qaCheck method to perform outlier checks.
a logical vector with the same length of input vector,indicating whether each entry of the input is a outlier.
Mike Jiang,Greg Finak
Maintainer: Mike Jiang <wjiang2@fhcrc.org>
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.