how i can display confusionchart in app.UIAxes
4 次查看(过去 30 天)
显示 更早的评论
Mdl = fitcknn(ciri_uji, target_uji, 'NumNeighbors', 2, 'Standardize', 1);
Y = target_uji;
predictedLabels = resubPredict(Mdl);
% Create confusion matrix
figure;
confusionchart(Y, predictedLabels);

0 个评论
回答(1 个)
Voss
2024-3-28
编辑:Voss
2024-3-28
According to the confusionchart documentation, you can specify the parent that the confusion chart will be created in, by specifying the appropriate parent container as the first argument in your call to confusionchart.
For instance, to put it directly in your app's uifigure, you can say:
confusionchart(app.UIFigure, Y, predictedLabels)
assuming the app's uifigure is called app.UIFigure. You could also put it in a panel or tab, etc., inside that uifigure.
2 个评论
Voss
2024-3-28
Sorry, I should have been more clear. You cannot make a confusion chart inside a uiaxes.
The documentation I linked to states that a confusion chart's parent is "a Figure, Panel, Tab, TiledChartLayout, or GridLayout object". Note that axes/uiaxes is not listed as a possibility.
So: you can put a confusion chart in your app (which I think is what you want), but not in a uiaxes (which is what you asked about).
Try this and see what happens:
confusionchart(app.UIFigure, Y, predictedLabels)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
