i am doing PLS with Mixomics package. I have 2 blocks of data, Performances and MethodesAlter.
R code :
Y <- Performances
X3 <- MethodesAlter
rownames(X3) <- rownames(Y)
pls1 <- pls(X3, Y, ncomp=4, mode = "canonical")
plotVar(pls1)
But it works only for 2 blocks of data and i want to know, how to do the same with 3 or 4 blocks of data? What package(s) allow to do that ? I am a beginner in PLS :/
Thanks for our help.