how i can display confusionchart in app.UIAxes

9 visualizzazioni (ultimi 30 giorni)
Januwa
Januwa il 28 Mar 2024 alle 16:39
Commentato: Voss il 28 Mar 2024 alle 22:13
Mdl = fitcknn(ciri_uji, target_uji, 'NumNeighbors', 2, 'Standardize', 1);
Y = target_uji;
predictedLabels = resubPredict(Mdl);
% Create confusion matrix
figure;
confusionchart(Y, predictedLabels);

Risposte (1)

Voss
Voss il 28 Mar 2024 alle 18:32
Modificato: Voss il 28 Mar 2024 alle 18:34
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 Commenti
Januwa
Januwa il 28 Mar 2024 alle 21:43
What I mean is how can the confusionchart be displayed in app.uiaxes, instead of displaying it as a figure
Voss
Voss il 28 Mar 2024 alle 22:13
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)

Accedi per commentare.

Categorie

Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange

Prodotti


Release

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by