How plot a matrix for Naive Bayes classifier?

2 ビュー (過去 30 日間)
Bajdar Nour
Bajdar Nour 2018 年 9 月 20 日
コメント済み: Bajdar Nour 2018 年 9 月 22 日
I want to illustrate the matrix as shown in the picture
this is a part of the code
fh = figure('Name', 'Confusion matrix', ...
'NumberTitle', 'off');
plotmat(cMat1, 'k', 'k', 15);
title(['Classification rate: ' num2str(classificationrate) '% for Naive Bayes Classifier'], 'FontSize', 14);
but it says Undefined function or variable 'plotmat'.
does has
any function instead plotmat?
  2 件のコメント
Brendan Hamm
Brendan Hamm 2018 年 9 月 20 日
Try heatmap or imagesc.
Bajdar Nour
Bajdar Nour 2018 年 9 月 21 日
Dear @Brendan, but when I use heatmap it gives this
Cannot find an exact (case-sensitive) match for 'heatmap'
The closest match is: HeatMap in C:\Program Files\MATLAB\MATLAB Production Server\R2015a\toolbox\bioinfo\microarray\@HeatMap\HeatMap.m

サインインしてコメントする。

採用された回答

Brendan Hamm
Brendan Hamm 2018 年 9 月 21 日
The heatmap function was introduced in 2017a. The imagesc function will work though. To display the numeric counts you will require a little more work with the text function requiring the location of the text and the x-y data points where the text should appear.
A = randi([0,20],5,5);
imagesc(A);
% Find the x, y locations for the text
x = 1:size(A,2);
y = 1:size(A,1);
% Grid of X,Y locations:
[X,Y] = meshgrid(x,y);
% Convert numbers in matrix to cell array of chars
c = cellfun(@num2str,num2cell(A),'UniformOutput',false);
% Palce text labels at X,Y lcoations:
text(X(:),Y(:),c(:),'HorizontalAlignment','center');
% Add a colorbar
colorbar
This is basically what heatmap does by default, so upgrading makes things quite a bit easier.
  1 件のコメント
Bajdar Nour
Bajdar Nour 2018 年 9 月 22 日
thanks, I solved my problem

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNaive Bayes についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by