How to increase font size confusionchart plot

48 次查看(过去 30 天)
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 个评论
Image Analyst
Image Analyst 2023-7-4
编辑:Image Analyst 2023-7-4
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:
Devendra
Devendra 2023-7-4
Z ZZ
2 1
1 2
2 2
2 3
2 2
1 2
1 3
2 2
2 2
3 2
2 2
2 2
2 2
2 2
2 2
2 1
2 2
2 2
1 2
3 2
2 2
3 1
2 2
2 2
2 2
2 2
2 2
2 2
2 2
2 2
1 2
3 2
2 2
3 2
2 2
2 2
2 2
1 2
2 2
2 2
2 2
2 2
2 2
3 2
3 3
3 2
2 2
2 2
2 2
2 2
2 2
2 2
3 2
3 2
2 2
3 3
3 2
2 2
2 2
2 3
2 2
1 2
2 2
2 2
2 2

请先登录,再进行评论。

回答(1 个)

Sreeram
Sreeram 2024-8-7,11:28
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.

类别

Help CenterFile Exchange 中查找有关 App Building 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by