This is a short effort to give users an idea of how long the functions take to process. The benchmarks were performed using the default R install on Travis CI.
We will be estimating a tri-diagonal precision matrix with dimension p = 100:
library(CVglasso)
library(microbenchmark)
# generate data from tri-diagonal (sparse) matrix
# compute covariance matrix (can confirm inverse is tri-diagonal)
S = matrix(0, nrow = 100, ncol = 100)
for (i in 1:100){
for (j in 1:100){
S[i, j] = 0.7^(abs(i - j))
}
}
# generate 1000 x 100 matrix with rows drawn from iid N_p(0, S)
set.seed(123)
Z = matrix(rnorm(1000*100), nrow = 1000, ncol = 100)
out = eigen(S, symmetric = TRUE)
S.sqrt = out$vectors %*% diag(out$values^0.5) %*% t(out$vectors)
X = Z %*% S.sqrt
# calculate sample covariance matrix
sample = (nrow(X) - 1)/nrow(X)*cov(X)
## Unit: milliseconds
## expr min lq mean
## CVglasso(S = sample, lam = 0.1, trace = "none") 29.25628 41.96798 42.29073
## median uq max neval
## 42.01046 42.86779 46.31862 100
# benchmark CVglasso - tolerance 1e-6
microbenchmark(CVglasso(S = sample, lam = 0.1, tol = 1e-6, trace = "none"))
## Unit: milliseconds
## expr min lq
## CVglasso(S = sample, lam = 0.1, tol = 1e-06, trace = "none") 46.89439 73.37247
## mean median uq max neval
## 74.15738 73.48215 74.32296 123.823 100
lam
:# benchmark CVglasso CV - default parameter grid
microbenchmark(CVglasso(X, trace = "none"), times = 5)
## Unit: seconds
## expr min lq mean median uq max
## CVglasso(X, trace = "none") 1.553415 1.55546 1.56115 1.56234 1.563776 1.57076
## neval
## 5
cores = 2
) cross validation:## Unit: seconds
## expr min lq mean median
## CVglasso(X, cores = 2, trace = "none") 3.119971 4.560049 4.38414 4.5774
## uq max neval
## 4.738459 4.924819 5