MATLAB: Adding proper label names to confusion matrix created with plotconfusion function:

plotconfusionplotconfusion label namesplotconfusion labels

How can I add actual label names to a confusion matrix created using plotconfusion? I don't want the current default of using numerals 1, 2, 3, etc as the label names. Any ideas will be appreciated. Thanks.

Best Answer

Hi, >> p = plotconfusion(t,y) gives a figure object p which has 2 children , one is uicontrol and the other is axis. By changing the YTickLabel property of the axis to the desired labels, you can get rid of the default labels.