How to increase font size confusionchart plot
12 views (last 30 days)
Show older comments
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 Comments
Image Analyst
on 4 Jul 2023
Edited: Image Analyst
on 4 Jul 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:
Answers (1)
Sreeram
on 7 Aug 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 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!