I am analyzing some data in R using Partial Least Squares Regression. As I complete the regression, I stumble upon two matrices called "x.scores" and "y.scores". What are they and what do they represent?
#Input:
install.packages("plsdepot")    
library("plsdepot")
plsExample = plsreg2(data.frame.x, data.frame.y, comps = numComponents)
summary(plsExample)
#Output:
          Length Class  Mode   
x.scores   50    -none- numeric
x.loads    10    -none- numeric
y.scores   50    -none- numeric
y.loads    10    -none- numeric
cor.xt     10    -none- numeric
cor.yt     10    -none- numeric
cor.xu     10    -none- numeric
cor.yu     10    -none- numeric
cor.tu      4    -none- numeric
 
    