How to increase font size confusionchart plot
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am using following MATLAB lines to draw confusion chart
cm = confusionchart(Z,ZZ,'RowSummary','row-normalized','ColumnSummary','column-normalized');
cm.FontSize = 18;
cm.Title = 'Confusion matrix';
This fontsize increases the size of overall confusionchart barring right hand side separated row matrix.
Please suggest me how to do it for all parts of confusion chart.
Devendra
2 commentaires
Image Analyst
le 4 Juil 2023
Modifié(e) : Image Analyst
le 4 Juil 2023
Post Z and ZZ so we can run your code. Or at least post a screenshot.
For what it's worth, I'm attaching a demo for how to change various parts of a plot separately.
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:
Réponses (1)
Sreeram
le 7 Août 2024
Hi Devendra,
I believe that you are trying to increase the font size of all parts of the confusion chart but notice that the font size of right-hand side separated row summary matrix remains small.
Based on my observations, it appears that the font sizes are limited by the width (and height) of their cells. When the window is maximized, the font size increases as the cell width increases.
To address this issue, you can try any of the following:
1. Ensure that the window width is large enough so that the cells are wide enough to accommodate the bigger font. You can have the figure maximized programmatically using the following command:
cm.Parent.WindowState = 'maximized';
2. You may consider creating a custom confusion chart function using MATLAB’s plotting functions, which gives you full control over the appearance of each element. For this, you can leverage the MATLAB’s confusionchart function itself to get your values. The documentation for confusionchart may be found here:
I hope this helps.
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!