I have fitted the normal distributions to my claim amount data using the fitdistr in R. How do i fit Multivariate normal distribution (Two dimensional normal distribution) ? I want to choose which one fits my sample data the best using the AIC in R. How do I proceed? I have tried
IC<-Mclust(data,G=1)
IC1<-Mclust(data,G=2)
smaller BIC is better model. but how to calculate AIC base on this Mclust result.