outl_det_m | R Documentation |
Perform multivariate outlier detection.
outl_det_m(x, method = "mcd", conf.level = 0.95)
x |
a data matrix. |
method |
methods for resistant estimation of multivariate location
and scatter. Only |
conf.level |
a confidential level. |
a logical vector.
cov.rob()
for "Resistant Estimation of Multivariate Location
and Scatter"
Other outlier detectors:
outl_det_u()
set.seed(134)
x <- cbind(rnorm(80), rnorm(80), rnorm(80))
y <- cbind(rnorm(10, 5, 1), rnorm(10, 5, 1), rnorm(10, 5, 1))
x <- rbind(x, y)
outl <- outl_det_m(x, method = "mcd", conf.level = 0.95)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.