Description Usage Arguments Details Value Examples
Fits SLIDE model to the multi-vew data X
1 2 3 4 5 6 7 8 9 10 11 12 |
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 view. |
n_lambda |
A length of tuning parameter sequence used for generation of candidate structures. The default value is 50. |
lambda_min |
A minimal value for tuning parameter. The default value is 0.01. |
n_fold |
A number of folds for rows in BCV procedure, the default value is 3. |
p_fold |
A number of folds for columns in BCV procedure, the default value is 3. |
center |
A logical indicator of whether the data should be centered, the default value is TRUE. |
k_max |
A maximal number of allowed iterations for SLIDE model fitting, the default value is 1000. |
eps |
A convergence tolerance criterion, the default value is 1e-6. |
ratio_max |
A maximal allowable rank of the binary structure as a ratio of maximal rank of X, the default value is set based on bi-cross-validation folds; with 3 folds corresponding to |
The function automatically column-centers and standardizes X so that the Frobenius norm within each view is equal to one (using function standardizeX
). The function then performs 3 steps of SLIDE workflow:
Create a candidate list of distinct binary structures S_1,...,S_m (using function create_structure_list
).
Select one structure S from the list using the bi-cross-validation (using function slideBCV
).
Fit SLIDE model with selected structure S (using function slide_givenS
).
A list with the elements
out_s |
Output from |
structure_list |
A list of considered candidate structures. |
S |
A selected binary structure for the SLIDE model. |
model |
Slide model fitted on selected |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.