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).
An object of class mvn, as returned by the mvn function.
select
A character vector specifying which components to display.
Must be one or more of "mvn", "univariate", "descriptives", "outliers", or "new_data".
Defaults to showing all available sections.
if (FALSE) {
data <- iris[1:4]
result <- mvn(data)
summary(result) # Show all sectionssummary(result, select = c("mvn", "outliers")) # Show selected sections only}