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!