How do I relabel classes into one sub group?
1 view (last 30 days)
Show older comments
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.
0 Comments
Accepted Answer
Adam Danz
on 11 Feb 2020
Edited: Adam Danz
on 11 Feb 2020
load fisheriris
idx = ~ismember(species, 'setosa');
species(idx) = {'abnormal'};
More Answers (0)
See Also
Categories
Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!