summary.mvn | R Documentation |
Provides a structured summary of the results from an object of class mvn
,
including multivariate and univariate normality tests, descriptive statistics,
and multivariate outlier detection (if applicable).
## S3 method for class 'mvn'
summary(
object,
select = c("mvn", "univariate", "descriptives", "outliers", "new_data"),
...
)
object |
An object of class |
select |
A character vector specifying which components to display.
Must be one or more of |
... |
Additional arguments (currently unused). |
Invisibly returns the input object.
## Not run:
data <- iris[1:4]
result <- mvn(data)
summary(result) # Show all sections
summary(result, select = c("mvn", "outliers")) # Show selected sections only
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.