Uses of Class
org.strbio.math.StatsMatrix

Packages that use StatsMatrix
org.strbio.math These classes perform functions related to mathematics and statistics. 
 

Uses of StatsMatrix in org.strbio.math
 

Subclasses of StatsMatrix in org.strbio.math
 class CorrectMatrix
          If your prediction is yes/no, or if you are only interested in stats on correctness and incorrectness, you can create a matrix which is 2xN, where N is the number of possible categories in reality, and data[0][i] indicates the number of wrong predictions of things belonging to catogory i (you predicted them as something other than i), while data[1][i] indicates the number of correct predictions of things belonging to category i.
 class SimMatrix
          This is a NxN matrix, where data[i][j] indicates the number of times something was actually i, but predicted to be j.