decodePM {rDecode} | R Documentation |
Implement DECODE
for simple precision matrix estimation
Description
Implement DECODE
to estimate a precision matrix of X
. This implementation is used in Hadimaja and Pun (2018).
Usage
decodePM(X, lambda0 = NULL, ...)
Arguments
X |
|
lambda0 |
number between 0 and 1. If |
... |
additional arguments to be passed to general decode function. |
Value
An object of class decodePM
containing:
Omega |
|
lambda0 |
the |
X |
data used. |
theta |
final |
lambda |
final |
total.iter |
number of iterations until convergence for each column. |
References
Hadimaja, M. Z., & Pun, C. S. (2018). A Self-Calibrated Regularized Direct Estimation for Graphical Selection and Discriminant Analysis.
Examples
# estimate the precision matrix of iris data
object <- decodePM(iris[,1:4], lambda0 = 0.01)
object
summary(object)
object$Omega
[Package rDecode version 0.1.0 Index]