summary.mvn: Summarize Multivariate Normality Analysis Results

View source: R/summary.mvn.R

summary.mvnR Documentation

Summarize Multivariate Normality Analysis Results

Description

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).

Usage

## S3 method for class 'mvn'
summary(
  object,
  select = c("mvn", "univariate", "descriptives", "outliers", "new_data"),
  ...
)

Arguments

object

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.

...

Additional arguments (currently unused).

Value

Invisibly returns the input object.

Examples

## 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)


MVN documentation built on June 10, 2025, 5:12 p.m.