Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
964 views

Confusion Matrix with number of classified/misclassified instances on it (Python/Matplotlib)

I am plotting a confusion matrix with matplotlib with the following code: from numpy import * import matplotlib.pyplot as plt from pylab import * conf_arr = [[33,2,0,0,0,0,0,0,0,1,3], ...
5
votes
4answers
164 views

Difference between ob_get_clean and ob_get_flush

They both seem to do the same thing: return the output buffer content to you and delete it aftewards. Which one should I use?
4
votes
1answer
77 views

How to create a confusion matrix containing multiple judgments in R?

I've got a data set from two raters judging a set of videoclips on multiple (binary) criteria. I'd like to plot a confusion matrix to better understand their agreement/disagreement. But all the ...
2
votes
1answer
163 views

matlab confusion matrix

I have a small problem in coding confusion 3x3 matrix by using matlab... I tried the code below, average = sum(diag(Mconf)./sum(Mconf,2))/3; However, it get NaN for the confusion matrix is [0 0 ...
1
vote
2answers
212 views

How to plot a confusion matrix using heatmaps in R?

I have a confusion matrix such that: a b c d e f g h i j a 5 4 0 0 0 0 0 0 0 0 b 0 0 0 0 0 0 0 0 0 0 c 0 0 4 0 0 0 0 0 0 0 d 0 0 0 0 0 0 0 0 0 0 e 2 0 0 0 2 0 0 0 0 0 f 1 0 0 0 0 2 0 0 0 0 g 0 0 0 ...
0
votes
0answers
47 views

How To Calculate a Normalized Confusion Matrix

I have a confusion matrix. What i want is to calculate Normalized Confusion Matrix from it. How can i calculate it?? Kindly provide me some code or pseudocode for it. Thanks (In advance)