print.mvout | R Documentation |
print
method for class "mvout".
## S3 method for class 'mvout'
print(x, ...)
x |
Object of class |
... |
Additional arguments (ignored). |
Prints the percentage of observations flagged as outliers, five quantiles of the robust Mahalanobis distances, and basic information about the options used for the outlier detection.
Nothing returned (just prints to console).
Jesus E. Delgado <delga220@umn.edu> Nathaniel E. Helwig <helwig@umn.edu>
mvout
for estimation of (robust) location/scatter.
predict.mvout
for obtaining predictions from mvout
objects.
# generate some data
n <- 200
p <- 2
set.seed(0)
x <- matrix(rnorm(n * p), n, p)
# detect outliers
set.seed(1) # for reproducible MCD estimate
out <- mvout(x)
# print results
out
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.