huge.select {huge} | R Documentation |
Model selection for high-dimensional undirected graph estimation
Description
Implements the regularization parameter selection for high dimensional undirected graph estimation. The optional approaches are rotation information criterion (ric), stability approach to regularization selection (stars) and extended Bayesian information criterion (ebic).
Usage
huge.select(
est,
criterion = NULL,
ebic.gamma = 0.5,
stars.thresh = 0.1,
stars.subsample.ratio = NULL,
rep.num = 20,
verbose = TRUE
)
Arguments
est |
An object with S3 class |
criterion |
Model selection criterion. |
ebic.gamma |
The tuning parameter for ebic. The default value is 0.5. Only applicable when |
stars.thresh |
The variability threshold in stars. The default value is |
stars.subsample.ratio |
The subsampling ratio. The default value is |
rep.num |
The number of subsamplings when |
verbose |
If |
Details
Stability approach to regularization selection (stars) is a natural way to select optimal regularization parameter for all three estimation methods. It selects the optimal graph by variability of subsamplings and tends to overselect edges in Gaussian graphical models. Besides selecting the regularization parameters, stars can also provide an additional estimated graph by merging the corresponding subsampled graphs using the frequency counts. The subsampling procedure in stars may NOT be very efficient, we also provide the recent developed highly efficient, rotation information criterion approach (ric). Instead of tuning over a grid by cross-validation or subsampling, we directly estimate the optimal regularization parameter based on random Rotations. However, ric usually has very good empirical performances but suffers from underselections sometimes. Therefore, we suggest if user are sensitive of false negative rates, they should either consider increasing r.num
or applying the stars to model selection. Extended Bayesian information criterion (ebic) is another competitive approach, but the ebic.gamma
can only be tuned by experience.
Value
An object with S3 class "select" is returned:
refit |
The optimal graph selected from the graph path |
opt.icov |
The optimal precision matrix from the path only applicable when |
opt.cov |
The optimal covariance matrix from the path only applicable when |
merge |
The graph path estimated by merging the subsampling paths. Only applicable when the input |
variability |
The variability along the subsampling paths. Only applicable when the input |
ebic.scores |
Extended BIC scores for regularization parameter selection. Only applicable when |
opt.index |
The index of the selected regularization parameter. NOT applicable when the input |
opt.lambda |
The selected regularization/thresholding parameter. |
opt.sparsity |
The sparsity level of |
and anything else included in the input est
Note
The model selection is NOT available when the data input is the sample covariance matrix.
See Also
huge
and huge-package
.
Examples
#generate data
L = huge.generator(d = 20, graph="hub")
out.mb = huge(L$data)
out.ct = huge(L$data, method = "ct")
out.glasso = huge(L$data, method = "glasso")
#model selection using ric
out.select = huge.select(out.mb)
plot(out.select)
#model selection using stars
#out.select = huge.select(out.ct, criterion = "stars", stars.thresh = 0.05,rep.num=10)
#plot(out.select)
#model selection using ebic
out.select = huge.select(out.glasso,criterion = "ebic")
plot(out.select)