Confusion Matrix class-label
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ayush Chatterjee
el 21 de Jul. de 2020
Comentada: Ayush Chatterjee
el 3 de Ag. de 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?
Respuesta aceptada
Madhav Thakker
el 24 de Jul. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!