Robust estimation methods for the mean vector and covariance matrix from data (possibly containing NAs) under multivariate heavy-tailed distributions such as angular Gaussian, Cauchy, and Student’s t. Additionally, a factor model structure can be specified for the covariance matrix.
The package can be installed from CRAN or GitHub:
# install stable version from CRAN
install.packages("fitHeavyTail")
# install development version from GitHub
::install_github("dppalomar/fitHeavyTail") devtools
To get help:
library(fitHeavyTail)
help(package = "fitHeavyTail")
?fit_mvt
To cite fitHeavyTail
in publications:
citation("fitHeavyTail")
To illustrate the simple usage of the package
fitHeavyTail
, let’s start by generating some multivariate
data under a Student’s t distribution with significant heavy
tails:
library(mvtnorm) # package for multivariate t distribution
<- 10 # number of variables
N <- 80 # number of observations
T <- 4 # degrees of freedom for tail heavyness
nu
set.seed(42)
<- rep(0, N)
mu <- t(rmvnorm(n = round(0.3*N), sigma = 0.1*diag(N)))
U <- U %*% t(U) + diag(N) # covariance matrix with factor model structure
Sigma_cov <- (nu-2)/nu * Sigma_cov
Sigma_scatter <- rmvt(n = T, delta = mu, sigma = Sigma_scatter, df = nu) # generate data X
We can first estimate the mean vector and covariance matrix via the traditional sample estimates (i.e., sample mean and sample covariance matrix):
<- colMeans(X)
mu_sm <- cov(X) Sigma_scm
Then we can compute the robust estimates via the package
fitHeavyTail
:
library(fitHeavyTail)
<- fit_mvt(X) fitted
We can now compute the estimation errors and see the big improvement:
sum((mu_sm - mu)^2)
#> [1] 0.2857323
sum((fitted$mu - mu)^2)
#> [1] 0.1404855
sum((Sigma_scm - Sigma_cov)^2)
#> [1] 5.861138
sum((fitted$cov - Sigma_cov)^2)
#> [1] 4.107825
To get a visual idea of the robustness, we can plot the shapes of the covariance matrices (true and estimated ones) projected on two dimensions. Observe how the heavy-tailed estimation follows the true one more closely than the sample covariance matrix:
For more detailed information, please check the vignette.
README file: GitHub-readme.
Vignette: CRAN-vignette and GitHub-vignette.