How to extract the predicted response from the Regression Learner App ?
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Pierre Guy
el 9 de Sept. de 2019
Respondida: Ahmed Eltantawi
el 2 de Sept. de 2024
After training a model using the Regression Learner App, how to extract the predicted response (values)?
Thank you.
0 comentarios
Respuesta aceptada
Bhargavi Maganuru
el 12 de Sept. de 2019
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 comentarios
Balantrapu Sai harshit
el 14 de Ag. de 2020
Can anyone briefly explain how to download the plots that we have predicted in Regression learner in R2018a
Más respuestas (1)
Ahmed Eltantawi
el 2 de Sept. de 2024
@Pierre Guy Please can you help me to extract data?. I tried but can not to do.
0 comentarios
Ver también
Categorías
Más información sobre Gaussian Process Regression en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!