Description Usage Arguments Value Examples
Solves penalized matrix factorization problem for the range of lambda values
1 2 3 4 5 6 7 8 9 10 | solve_optim1_seq(
X,
pvec,
lambda_seq = NULL,
n_lambda = 50,
lambda_max = 1,
lambda_min = 0.01,
k_max = 1000,
eps = 1e-06
)
|
X |
A n x p concatenated data matrix of views X_1,...,X_d. |
pvec |
A vector of values p_1,....,p_d corresponding to the number of measurements within each data view. |
lambda_seq |
An optional sequence of tuning parameters for the penalized matrix decomposition problem. By default, the algorithm generates its own sequence based on supplied values of |
n_lambda |
A length of tuning parameter sequence. The default value is 50. It is only used when |
lambda_max |
A maximal value for tuning parameter. The default value is 1. If X is already standardized, it is recommended to set |
lambda_min |
A minimal tuning parameter to be considered, the default value is 0.1 |
k_max |
A maximal number of allowed iterations, the default value is 1000. |
eps |
A convergence tolerance criterion as measured by the differene in objective functions at successive iterations, the default value is 1e-06. |
A list with the elements
lambda |
A sequence of tuning parameters used. |
param |
A list with estimates of |
1 2 3 4 5 6 7 8 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.