PRTools contents |
PLS_TRANSFORM
T = pls_transform(X,R)
T = pls_transform(X,R,Options)
Input | |
X | [N -by- d_X] the input data matrix, N samples, d_X variables |
R | [d_X -by- nLV] the transformation matrix: T_new = X_new*R (X_new here after preprocessing, preprocessing and un-preprocessing could be done automatically (than Options contains info about preprocessing) or manually); normally, R as a field of XRes output parameter of pls_train routine |
Output | |
T | [N -by- nLV] scores -- transformed data |
Applys PLS (Partial Least Squares) regression model
PRTools contents |