create.shrink_Gaussian.Rd
This function generates Gaussian knockoff variables using the second-order method with the semi-definite programming (SDP) approach. It is particularly useful for variable selection tasks involving shrinkage methods.
create.shrink_Gaussian(X, n_ko = 1, verbose = FALSE)
A numeric matrix or data frame of predictors for which knockoffs will be generated. Each column represents a variable, and each row corresponds to an observation.
An integer specifying the number of knockoff matrices to generate. Default is 1.
Logical. If TRUE, displays progress information during knockoff generation. Default is TRUE.
A list of matrices containing Gaussian knockoff variables corresponding to the original matrix X
. Each matrix in the list has the same dimensions as X
.
This function uses the semi-definite programming (SDP) method to generate second-order Gaussian knockoffs. It is useful in statistical settings, such as controlling the false discovery rate in variable selection tasks that involve shrinkage methods.
Other create:
create.fixed()
,
create.gaussian()
,
create.pc()
,
create.pls()
,
create.second_order()
,
create.seq()
,
create.sparse_Gaussian()
,
create.sparse_seq()
,
create.zpls()