Accessing the Confusion Matrix Data

2 views (last 30 days)
Steve
Steve on 16 Sep 2019
Edited: Stephan on 17 Sep 2019
Is the data for the confusion matrix available (besides just the number inside of the picture)?
I'm running many models and I would to programmatically extract the data so I don't have to record it by hand.
Thank you,
Steve

Accepted Answer

Stephan
Stephan on 17 Sep 2019
Edited: Stephan on 17 Sep 2019
doc confusionmat
confusionmat gives you a matrix, containing all the informations needed - it can be used also as the NormalizedValues property of the confusionchart object:
cm = confusionchart(Y,predictedY);
Matrix = cm.NormalizedValues

More Answers (0)

Products


Release

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!