Confusion Matrix class-label
17 views (last 30 days)
Show older comments
Ayush Chatterjee
on 21 Jul 2020
Commented: Ayush Chatterjee
on 3 Aug 2020
I want to write the class labels of my confusion matrix as 'f subscript 1', 'f subscript 2' etc. However when I am defining as
cm = confusionchart([20 0 0; 0 20 0; 0 0 20],{'f_1','f_2','f_3'}),,,But the class labels are coming as 'f_1', 'f_2' etc. The subscripts are not coming.
I have also tried this...cm = confusionchart([20 0 0; 0 20 0; 0 0 20],{'$f_1$','$f_2$','$f_3$'}, 'Interpreter','latex' )....This is showing an error message.
Can anybody please help me out?
Accepted Answer
Madhav Thakker
on 24 Jul 2020
To put latex in XTickLabel and YTickLabel, you can use the plotconfusion() function. plotconfusion() has a Children Graphics field whose second element is Axes and it can be modified to change the XTickLabel property which supports latex as well.
But, confusionchart() does not return the axes. It returns a ConfusionMatrixChart variable which does have a ClassLabels field but it is read only. There is an option to specify ClassLabels while declaring the confusion matrix, but it does not take latex formatted values.
Example of plotconfusion() function - https://in.mathworks.com/matlabcentral/answers/418387-can-i-change-the-properties-of-the-confusion-matrix-plot-like-axes-labels-and-tick-labels?s_tid=srchtitle.
Hope this helps.
0 Comments
More Answers (0)
See Also
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!