Confusion Matrix class-label

10 次查看(过去 30 天)
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?

采纳的回答

Madhav Thakker
Madhav Thakker 2020-7-24
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.
Hope this helps.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Grid Lines, Tick Values, and Labels 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by