How do I relabel classes into one sub group?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Suppose I have 3 different classes below, how to I relabel 'versicolor' and 'virginica' into another class named 'abnormal' temporary because I want to do classification for 'setosa' and 'abnormal' using fitcsvm function first and later I will need to relabel the class again for another fitcsvm classifcation model.
![Screenshot 2020-02-12 at 12.46.58 AM.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/271047/Screenshot%202020-02-12%20at%2012.46.58%20AM.png)
0 Commenti
Risposta accettata
Adam Danz
il 11 Feb 2020
Modificato: Adam Danz
il 11 Feb 2020
load fisheriris
idx = ~ismember(species, 'setosa');
species(idx) = {'abnormal'};
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Statistics and Machine Learning Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!