필터 지우기
필터 지우기

Difference between plotconfusion and Confusionmat function in MATLAB?

조회 수: 6 (최근 30일)
Machine Learning Enthusiast
Machine Learning Enthusiast 2017년 7월 9일
댓글: Star Strider 2017년 7월 17일
I tried to display my confusion matrix from actual and predicted values while using both functions
plotconfusion
  • and
Confusionmat.
Both give different results. It's really strange for me. It seems Confusionmat is the transpose of plotconfusion. What should I do to plot similar results of Confusionmat on plotconfusion?
plotconfusion:
59 0 0
0 68 0
0 3 48
Confusionmat:
59 0 0
0 68 3
0 0 48

답변 (1개)

Star Strider
Star Strider 2017년 7월 9일
Your interpretation of the function outputs being transposes of each other is correct.
From the confusionmat documentation:
  • C(i,j) is a count of observations known to be in group i but predicted to be in group j.
From the plotconfusion, documentation:
  • On the confusion matrix plot, the rows correspond to the predicted class (Output Class), and the columns show the true class (Target Class).
So they are in fact transposes of each other.
I would use one or the other for consistency, depending on what you are doing. If you need to compare the, transpose one to the other, and be certain to note what the rows and columns represent.
  댓글 수: 2
Machine Learning Enthusiast
Machine Learning Enthusiast 2017년 7월 17일
thank you.So what should i do to plot confusion matrix same as confusionmat funtion?
Star Strider
Star Strider 2017년 7월 17일
My pleasure.
I do not have a clear idea of what you want. If you want the confusionmat plot from your plotconfusion output, use the patch function to create the plot and the text function to display the data values on it.
However, I would just use plotconfusion for the plot.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by