How to export predictions?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Tiago Afonso
am 21 Nov. 2019
Kommentiert: Tiago Afonso
am 21 Nov. 2019
Hello,
I created a predictive model with the classification learner but I can't actually see the predictions. What do I need to do in order to see them and how can I export them to excel?
Thanks
0 Kommentare
Akzeptierte Antwort
Ridwan Alam
am 21 Nov. 2019
Bearbeitet: Ridwan Alam
am 21 Nov. 2019
On the Classification Learner app, there is "export model" button.
After you have the model exported to your workspace, you can use
yhat = model.predictFcn(x)
where x is your input or test data.
If you want to write the variable yhat to csv, use csvwrite() or any similar function.
A helpful link:
7 Kommentare
Ridwan Alam
am 21 Nov. 2019
[yhat, yscores] = predict(trainedModel, table2array(gggggggggggg))
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Classification Trees finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!