adalasso(X, y, k = 10, use.Gram = TRUE,both=TRUE,intercept=TRUE)
X
contain the
samples, the columns of X
contain the observed variablesk
-fold cross-validation. The
same k
is used for the estimation of the weights and the
estimation of the penalty term for adaptive lasso. Default is k=10.use.Gram
=TRUE. intercept=TRUE
.intercept=FALSE
was specified, the intercept is set to 0.intercept=FALSE
was specified, the intercept is set to 0.k
-fold cross-validation steps, the weights for adaptive lasso are computed in
terms of a lasso fit. (The optimal value of the
penalty term is selected via k
-fold cross-validation). Note that this implies that a lasso solution is computed k*k times!
N. Kraemer, J. Schaefer, A.-L. Boulesteix (2009) "Regularized Estimation of Large-Scale Gene Regulatory Networks using Gaussian Graphical Models", BMC Bioinformatics, 10:384
Beta2parcor
, adalasso.net
n<-100 # number of observations
p<-60 # number of variables
X<-matrix(rnorm(n*p),ncol=p)
y<-rnorm(n)
ada.object<-adalasso(X,y,k=10)
Run the code above in your browser using DataLab