How to make predictions wit Partial Least Squares (PLSregress)
18 次查看(过去 30 天)
显示 更早的评论
Hi all. I'm reading the example of how to use partial least squares (https://www.mathworks.com/help/stats/examples/partial-least-squares-regression-and-principal-components-regression.html) But I have a question, if I divide the y-data as
y_train = y(1:50);
y_test = y(51:end);
X_train = X(1:50,:);
X_test = X(51:end,:);
and I follow the exmaple by doing
[Xloadings,Yloadings,Xscores,Yscores,betaPLS] = plsregress(X_train,y_train,2);
How can I use this information in order to make predictions for the test data?
0 个评论
回答(1 个)
Juan Villacrés
2019-2-7
Hi, this is the way to get the prediction.
y_pred = [ones(size(X_test ,1),1) X_test]*betaPLS;
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Gaussian Process Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!