How to extract the predicted response from the Regression Learner App ?
14 次查看(过去 30 天)
显示 更早的评论
After training a model using the Regression Learner App, how to extract the predicted response (values)?
Thank you.
0 个评论
采纳的回答
Bhargavi Maganuru
2019-9-12
To extract the predicted response for trained data,
Select Response plot and click Export plot to Figure. It creates a figure from the plot.
To save data to workspace from the figure select File>Save Workspace. This creates a .mat file.
Load .mat file and get predicted responses
a=load('responses.mat');
PredictedResponses=a.yfit;
Hope this helps!
4 个评论
Balantrapu Sai harshit
2020-8-14
Can anyone briefly explain how to download the plots that we have predicted in Regression learner in R2018a
更多回答(1 个)
Ahmed Eltantawi
2024-9-2
@Pierre Guy Please can you help me to extract data?. I tried but can not to do.
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!