MATLAB中的混淆矩阵的实现

举报
dujiahei 发表于 2022/02/25 00:36:30 2022/02/25
【摘要】 转自:https://blog.csdn.net/zhaomengszu/article/details/56283832 混淆矩阵的matlab代码实现: actual:就是我们已知的label。 detected是我们通过模型预测得到的label 结合下面语句实现:  [pred,acc,preb] = svmp...

转自:https://blog.csdn.net/zhaomengszu/article/details/56283832

混淆矩阵的matlab代码实现:

actual:就是我们已知的label。

detected是我们通过模型预测得到的label

结合下面语句实现:

 [pred,acc,preb] = svmpredict(double(testLabel), testData, model, '-b 1');



[html] view plain copy
  1.  function confusion_matrix(actual,detected)  
  2.  [mat,order] = confusionmat(actual,detected);  
  3.   
  4.  %mat = rand(10);           %# A 5-by-5 matrix of random values from 0 to 1  
  5. % mat(3,3) = 0;            %# To illustrate  
  6. % mat(5,2) = 0;            %# To illustrate  
  7. imagesc(mat);            %# Create a colored plot of the matrix values  
  8. colormap(flipud(gray));  %# Change the colormap to gray (so higher values are  
  9.                          %#   black and lower values are white)  
  10.   
  11. textStrings = num2str(mat(:),'%0.02f');  %# Create strings from the matrix values  
  12. textStrings = strtrim(cellstr(textStrings));  %# Remove any space padding  
  13.   
  14. %% ## New code: ###  
  15. %idx = find(strcmp(textStrings(:), '0.00'));  
  16. %textStrings(idx) = {'   '};  
  17. %% ################  
  18.   
  19. [x,y] = meshgrid(1:5);   %# Create x and y coordinates for the strings  
  20. hStrings = text(x(:),y(:),textStrings(:),...      %# Plot the strings  
  21.                 'HorizontalAlignment','center');  
  22. midValue = mean(get(gca,'CLim'));  %# Get the middle value of the color range  
  23. textColors = repmat(mat(:) > midValue,1,3);  %# Choose white or black for the  
  24.                                              %#   text color of the strings so  
  25.                                              %#   they can be easily seen over  
  26.                                              %#   the background color  
  27. set(hStrings,{'Color'},num2cell(textColors,2));  %# Change the text colors  
  28.   
  29. set(gca,'XTick',1:5,...                         %# Change the axes tick marks  
  30.         'XTickLabel',{'Bob','Hyt','Maple','Study','Zm'},...  %#   and tick labels  
  31.         'YTick',1:5,...  
  32.         'YTickLabel',{'Bob','Hyt','Maple','Study','Zm'},...  
  33.         'TickLength',[0 0]);  



结果是:



文章来源: dujiahei.blog.csdn.net,作者:dujiahei,版权归原作者所有,如需转载,请联系作者。

原文链接:dujiahei.blog.csdn.net/article/details/80789945

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。