MVN is an R package that provides a comprehensive and user-friendly framework for assessing multivariate normality—a key assumption in many multivariate statistical methods such as:
- MANOVA
- Linear Discriminant Analysis
- Principal Component Analysis
- Canonical Correlation Analysis
Multivariate normality is often overlooked or improperly tested. The MVN package addresses this by integrating robust numerical tests, graphical diagnostics, and transformation tools, offering clear insights into the distributional characteristics of your multivariate data.
-
Multivariate Normality Tests:
- Mardia's Test
- Henze-Zirkler’s Test
- Henze-Wagner’s Test
- Royston’s Test
- Doornik-Hansen's Test
- Energy Test
-
Graphical Diagnostics:
- Chi-square Q-Q Plots
- 3D Perspective Plots
- Contour Plots
-
Multivariate Outlier Detection:
- Robust Mahalanobis distance-based methods
-
Univariate Normality Checks:
- Multiple tests and visualizations for marginal distributions
-
Transformations & Imputation
- Log, square root, and square transformations
- Optimal Box–Cox and Yeo–Johnson power transformations
- Missing data handling via mean, median, or MICE imputation
-
Bootstrap Support
- Optional bootstrap p-values for Mardia, Henze–Zirkler, and Royston tests for improved small-sample inference
-
Descriptive Statistics and Group-Wise Analysis
- Grouped summaries using the subset argument
- Integration with tidy data pipelines
To install the latest version from CRAN:
install.packages("MVN")
To install the development version from GitHub:
devtools::install_github("selcukorkmaz/MVN")
library(MVN)
# Run MVN tests and diagnostics on iris data
result <- mvn(
data = iris[1:50, 1:3],
mvn_test = "hz"
)
# View results
summary(result, "mvn")
For grouped analysis:
mvn(data = iris, subset = "Species", mvn_test = "hz")
Explore MVN’s features via a user-friendly web interface: http://biosoft.erciyes.edu.tr/app/MVN
To launch the Shiny app locally from the MVN package, run:
MVN::run_mvn_app()
Full documentation and an interactive tutorial site are available at: https://selcukorkmaz.github.io/mvn-tutorial/
Please cite MVN in your publications using:
Korkmaz S, Goksuluk D, Zararsiz G. MVN: An R Package for Assessing Multivariate Normality. The R Journal. 2014; 6(2):151-162. https://journal.r-project.org/archive/2014-2/korkmaz-goksuluk-zararsiz.pdf
MVN is released under the MIT license.