How to plot a confusion matrix for multi-class categorical labels?

I have 17 classes. Targets and outputs are of categorical type (example 'dog', 'cat'). They are N x 1 vectors where N is the number of samples.
How do I plot a confusion matrix for this? I don't think I can use the built in function, 'Plotconfusion(targets,outputs)' because requires the targets and outputs to be matrices.

Answers (2)

Convert the categorical labels to a binary equivalent.
1) Change the categories of both targets and outputs using grp2idx or double.
2) Transpose the results of (1)
3) Use the result of (2) as the targets and outputs as described here: https://www.mathworks.com/matlabcentral/answers/338244-how-can-i-plot-a-confusion-matrix-for-a-multi-class-or-non-binary-classification-problem

Asked:

on 28 Feb 2018

Answered:

on 16 Mar 2018

Community Treasure Hunt

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

Start Hunting!