public Object getValueAt(int row, int col) {
   if (col == 0) {
     return matrix.getAnovaAttributeNames().get(row);
   } else {
     return Tools.formatNumber(matrix.getProbabilities()[row][col - 1]);
   }
 }