I am trying to classify if each class in the Iris dataset is multivariate normal or not. I am using the MVN package in R and have generate the following:
library(MVN)
attach(iris)
Mar<-MVN::mvn(data=iris,subset="Species", mvnTest="mardia")
Mar$multivariateNormality
How can I get the output in a readable table in R?