How do I relabel classes into one sub group?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
채택된 답변
Adam Danz
2020년 2월 11일
편집: Adam Danz
2020년 2월 11일
load fisheriris
idx = ~ismember(species, 'setosa');
species(idx) = {'abnormal'};
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!