How do I relabel classes into one sub group?

조회 수: 1 (최근 30일)
tinkiewinkie
tinkiewinkie 2020년 2월 11일
편집: Adam Danz 2020년 2월 12일
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

채택된 답변

Adam Danz
Adam Danz 2020년 2월 11일
편집: Adam Danz 2020년 2월 11일
load fisheriris
idx = ~ismember(species, 'setosa');
species(idx) = {'abnormal'};
  댓글 수: 2
tinkiewinkie
tinkiewinkie 2020년 2월 11일
Thanks it work well, and is there any command that I can use in the later part of the algorithm to revert back to the orginal class? For example from 'abormal' back to 'versicolor' and 'virginica' and relabel 'virginica' and 'setosa' as 'abnormal2'?
Adam Danz
Adam Danz 2020년 2월 11일
편집: Adam Danz 2020년 2월 12일
I would just make a copy of the species array so you don't lose that data. You can change the ismember() inputs as needed. For example,
idx = ~ismember(species, {'virginica','setosa'});

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Support Vector Machine Classification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by