Filter löschen
Filter löschen

How to remove a specific class in the confusion matrix?

5 Ansichten (letzte 30 Tage)
Mibang
Mibang am 26 Mär. 2024
Kommentiert: Voss am 28 Mär. 2024
Hi,
I have a confusion matrix that can be generated by the code below with attached mat-file.
figure; cm = confusionchart([trueCellR{:}],[testCellR{:}],'RowSummary','row-normalized','ColumnSummary','column-normalized');
I want to remove the class of "n/a" in both confusion matrix and generated figure.
Besides, how can I change the order of the classes in the figure?
Thank you very much,

Akzeptierte Antwort

Voss
Voss am 26 Mär. 2024
load testCells
x = removecats([trueCellR{:}],'n/a');
y = removecats([testCellR{:}],'n/a');
x = reordercats(x,[3 2 1]);
figure; cm = confusionchart(x,y,'RowSummary','row-normalized','ColumnSummary','column-normalized');
  6 Kommentare
Mibang
Mibang am 28 Mär. 2024
Great, thanks again!!
Voss
Voss am 28 Mär. 2024
You're welcome!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by