Description Usage Arguments Functions
moma_sfcca
creates an SFCCA
R6 object and returns it. Type ?CCA_deflation
for
description of problem formulation and deflation scheme.
moma_scca
is a function for performing one-way sparse CCA.
moma_twscca
is a function for performing two-way sparse CCA.
moma_fcca
is a function for performing one-way functional CCA.
moma_twfcca
is a function for performing two-way functional CCA.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | moma_sfcca(X, ..., Y, center = TRUE, scale = FALSE,
x_sparse = moma_empty(), y_sparse = moma_empty(),
x_smooth = moma_smoothness(), y_smooth = moma_smoothness(),
pg_settings = moma_pg_settings(), max_bic_iter = 5, rank = 1)
moma_scca(X, ..., Y, center = TRUE, scale = FALSE,
x_sparse = moma_empty(), y_sparse = moma_empty(),
pg_settings = moma_pg_settings(), max_bic_iter = 5, rank = 1)
moma_twscca(X, ..., Y, center = TRUE, scale = FALSE,
x_sparse = moma_empty(), y_sparse = moma_empty(),
pg_settings = moma_pg_settings(), max_bic_iter = 5, rank = 1)
moma_fcca(X, ..., Y, center = TRUE, scale = FALSE,
x_smooth = moma_smoothness(), y_smooth = moma_smoothness(),
pg_settings = moma_pg_settings(), max_bic_iter = 5, rank = 1)
moma_twfcca(X, ..., Y, center = TRUE, scale = FALSE,
x_smooth = moma_smoothness(), y_smooth = moma_smoothness(),
pg_settings = moma_pg_settings(), max_bic_iter = 5, rank = 1)
|
X, Y |
A data matrix, each row representing a sample, and each column a feature. |
... |
Force users to specify arguments by names. |
center |
A logical value indicating whether the variables should be shifted to be zero centered.
Defaults to |
scale |
A logical value indicating whether the variables should be scaled to have unit variance.
Defaults to |
x_sparse, y_sparse |
An object of class inheriting from " |
x_smooth, y_smooth |
An object of class inheriting from " |
pg_settings |
An object of class inheriting from " |
max_bic_iter |
A positive integer. Defaults to 5. The maximum number of iterations allowed in nested greedy BIC selection scheme. |
rank |
A positive integer. Defaults to 1. The maximal rank, i.e., maximal number of principal components to be used. |
moma_scca
: a function for performing one-way sparse CCA.
moma_twscca
: a function for performing two-way sparse CCA
moma_fcca
: a function for performing one-way functional CCA
moma_twfcca
: a function for performing two-way functional CCA
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.