Hi mixOmcis team and users,
I have a question regarding the interpretation of proportion of explained variance when mode=“regression”. I can observe for this mode that the sum of explained variance for Y over pls comp are over 100%. That’s not the case when the mode is classical.
On the Linnerud dataset example :
data(“linnerud”)
X = scale(linnerud$physiological)
Y = scale(linnerud$exercise)
mod_mix_regression = mixOmics::pls(Y=Y,X=X,mode=“regression”,scale=F,ncomp=3)
mod_mix_classic = mixOmics::pls(Y=Y,X=X,mode=“classic”,scale=F,ncomp=3)
cumsum(mod_mix_classic$prop_expl_var$Y)
cumsum(mod_mix_regression$prop_expl_var$Y) #over 100%
My questions are :
- I guess that it comes from the way Y is deflated/normalized but why this choice?
- Is it still possible to interpret proportion of explained variance? How?
Best regards.