I need to combine more than one confusion matrix. Could anyone please help me to or suggest me any techniques or different ways to combine the confusion matrix that I got the ouput from Sentiment Aanalysis in data mining
You need to bring more input or at least examples. Usually, you have only one confusion matrix even with several classes otherwise it means that you are not studying the same dataset or population and it does not make sense to combine the studies.
A confusion matrix is a summarized view of the output of a classifier (predicted class) vs. the real class (gold standard).
If your class space is the same across the different confusion matrices (I.e. the class labels are exactly the same) then you could just sum the matrices. I'm not sure why would you do that, unless you want a higher level summary of the classifier performance across different datasets.
I'm not sure this is what you want, but in information retrieval people do micro and macro averaging for computing precision, recall, fmeasure, etc. In micro average you average true/falses positive/negatives and then compute the measures, and in macro average, you compute the measure for each matrix, and then average the results. See
Thank you Sir for you reply. Yes, I need to give higher level summary of different confusion matrix that works on different dataset having same domain and same number of class classification(positive, negative)
In your previous question you had mentioned that you are using movie review datasets. If you want to use same datasets in confusion matrix for evaluation, then there is no need to merge them, just calculate the average of precision, recall and F-measure for different datasets. My current research is also sentiment analysis and I found researchers adopting the same criteria to compare their results.
If this is not the case which I understand then your problem needs to be clarified.