optparasearch | R Documentation |
Combined method for optimizing the number of components and regularized parameters for "msma".
optparasearch(
X,
Y = NULL,
Z = NULL,
search.method = c("ncomp1st", "regpara1st", "regparaonly", "simultaneous")[1],
eta = 1,
type = "lasso",
inX = NULL,
inY = NULL,
muX = 0,
muY = 0,
comp = 10,
nfold = 5,
maxrep = 3,
minpct = 0,
maxpct = 1,
maxpct4ncomp = NULL,
criterion = c("BIC", "CV")[1],
criterion4ncomp = NULL,
whichselect = NULL,
homo = NULL,
intseed = 1
)
## S3 method for class 'optparasearch'
print(x, ...)
X |
a matrix or list of matrices indicating the explanatory variable(s). This parameter is required. |
Y |
a matrix or list of matrices indicating objective variable(s). This is optional. If there is no input for Y, then PCA is implemented. |
Z |
a vector, response variable(s) for implementing the supervised version of (multiblock) PCA or PLS. This is optional. The length of Z is the number of subjects. If there is no input for Z, then unsupervised PLS/PCA is implemented. |
search.method |
a character indicationg search methods, see Details. Default is "ncomp1st" (this is version 3.0 or later). |
eta |
numeric scalar indicating the parameter indexing the penalty family. This version contains only choice 1. |
type |
a character, indicating the penalty family. In this version, only one choice is available: "lasso." |
inX |
a vector or list of numeric vectors specifying the variables in X, always included in the model |
inY |
a vector or list of numeric vectors specifying the variables in Y, always included in the model |
muX |
a numeric scalar for the weight of X for the supervised case. 0 <= muX <= 1. |
muY |
a numeric scalar for the weight of Y for the supervised case. 0 <= muY <= 1. |
comp |
numeric scalar for the number of components to be considered or the maximum canditate number of components. |
nfold |
number of folds - default is 5. |
maxrep |
numeric scalar for the number of iteration. |
minpct |
minimum candidate parameters defined as a percentile of automatically determined (possible) candidates. |
maxpct |
maximum candidate parameters defined as a percentile of automatically determined (possible) candidates. |
maxpct4ncomp |
maximum candidate parameters defined as a percentile of automatically determined (possible) candidates. |
criterion |
a character, the evaluation criterion, "CV" for cross-validation, based on a matrix element-wise error, and "BIC" for Bayesian information criteria. The "BIC" is the default. |
criterion4ncomp |
a character, the evaluation criterion for the selection of the number of components, "CV" for cross-validation, based on a matrix element-wise error, and "BIC" for Bayesian information criteria. |
whichselect |
which blocks selected. |
homo |
same parameters. |
intseed |
seed number for the random number in the parameter estimation algorithm. |
x |
an object of class " |
... |
further arguments passed to or from other methods. |
A function for identifying the regularized sparseness parameters lambdaX and lambdaY and the number of components for msma
. Four search methods are available. The "simultaneous" method identifies the number of components by searching the regularized parameters in each component. The "regpara1st" identifies the regularized parameters by fixing the number of components, then searching for the number of components with the selected regularized parameters. The "ncomp1st" method identifies the number of components with a regularized parameter of 0, then searches for the regularized parameters with the selected number of components. The "regparaonly" method searches for the regularized parameters with a fixed number of components.
optncomp |
Optimal number of components |
optlambdaX |
Optimal parameters for X |
optlambdaY |
Optimal parameters for Y |
mincriterion |
Minimum criterion value |
criteria |
All resulting criterion values in the process |
pararange |
Range of candidates parameters |
##### data #####
tmpdata = simdata(n = 50, rho = 0.8, Yps = c(10, 12, 15), Xps = 20, seed=1)
X = tmpdata$X; Y = tmpdata$Y
##### Regularized parameters search #####
opt1 = optparasearch(X, Y, search.method = "regparaonly", comp=1, nfold=5, maxrep=2)
opt1
fit4 = msma(X, Y, comp=opt1$optncomp, lambdaX=opt1$optlambdaX, lambdaY=opt1$optlambdaY)
fit4
summary(fit4)
##### Restrict search range #####
opt2 = optparasearch(X, Y, comp=3, nfold=5, maxrep=2, minpct=0.5)
opt2
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.