Description Usage Arguments Details Value See Also Examples
NOTE THAT THIS FUNCTION DOES NOT CENTER NOR SCALE THE MATRICES! Any normalization you will have to do yourself. It is best practice to at least center the variables though.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
X |
Numeric matrix. Vectors will be coerced to matrix with |
Y |
Numeric matrix. Vectors will be coerced to matrix with |
n |
Integer. Number of joint PLS components. Must be positive. |
nx |
Integer. Number of orthogonal components in X. Negative values are interpreted as 0 |
ny |
Integer. Number of orthogonal components in Y. Negative values are interpreted as 0 |
stripped |
Logical. Use the stripped version of o2m (usually when cross-validating)? |
p_thresh |
Integer. If |
q_thresh |
Integer. If |
tol |
Double. Threshold for which the NIPALS method is deemed converged. Must be positive. |
max_iterations |
Integer. Maximum number of iterations for the NIPALS method. |
sparse |
Boolean. Default value is |
groupx |
Vector. Used when |
groupy |
Vector. Used when |
keepx |
Vector. Used when |
keepy |
Vector. Used when |
max_iterations_sparsity |
Integer. Used when |
If both nx
and ny
are zero, o2m
is equivalent to PLS2 with orthonormal loadings.
This is a ‘slower’ (in terms of memory) implementation of O2PLS, and is using svd
, use stripped=T
for a stripped version with less output.
If either ncol(X) > p_thresh
or ncol(Y) > q_thresh
, the NIPALS method is used which does not store the entire covariance matrix.
The squared error between iterands in the NIPALS approach can be adjusted with tol
.
The maximum number of iterations in the NIPALS approach is tuned by max_iterations
.
A list containing
Tt |
Joint X scores |
W. |
Joint X loadings |
U |
Joint Y scores |
C. |
Joint Y loadings |
E |
Residuals in X |
Ff |
Residuals in Y |
T_Yosc |
Orthogonal X scores |
P_Yosc. |
Orthogonal X loadings |
W_Yosc |
Orthogonal X weights |
U_Xosc |
Orthogonal Y scores |
P_Xosc. |
Orthogonal Y loadings |
C_Xosc |
Orthogonal Y weights |
B_U |
Regression coefficient in |
B_T. |
Regression coefficient in |
H_TU |
Residuals in |
H_UT |
Residuals in |
X_hat |
Prediction of X with Y |
Y_hat |
Prediction of Y with X |
R2X |
Variation (measured with |
R2Y |
Variation (measured with |
R2Xcorr |
Variation (measured with |
R2Ycorr |
Variation (measured with |
R2X_YO |
Variation (measured with |
R2Y_XO |
Variation (measured with |
R2Xhat |
Variation (measured with |
R2Yhat |
Variation (measured with |
W_gr |
Joint loadings of X at group level (only available when GO2PLS is used) |
C_gr |
Joint loadings of Y at group level (only available when GO2PLS is used) |
summary.o2m
, plot.o2m
, crossval_o2m_adjR2
, crossval_sparsity
1 2 3 4 5 6 7 8 9 10 11 12 13 | test_X <- scale(matrix(rnorm(100*10),100,10))
test_Y <- scale(matrix(rnorm(100*11),100,11))
# --------- Default run ------------
o2m(test_X, test_Y, 3, 2, 1)
# ---------- Stripped version -------------
o2m(test_X, test_Y, 3, 2, 1, stripped = TRUE)
# ---------- High dimensional version ----------
o2m(test_X, test_Y, 3, 2, 1, p_thresh = 1)
# ------ High D and stripped version ---------
o2m(test_X, test_Y, 3, 2, 1, stripped = TRUE, p_thresh = 1)
# ------ Now with more iterations --------
o2m(test_X, test_Y, 3, 2, 1, stripped = TRUE, p_thresh = 1, max_iterations = 1e6)
# ----------------------------------
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.