}
temp.append("\n\n");
} else if (m_Distributions[counter][0] instanceof DiscreteEstimator) {
Attribute a = m_Instances.attribute(i);
for (int j = 0; j < a.numValues(); j++) {
String val = " " + a.value(j);
temp.append(pad(val, " ", maxAttWidth + 1 - val.length(), false));
for (int k = 0; k < m_Instances.numClasses(); k++) {
DiscreteEstimator d = (DiscreteEstimator)m_Distributions[counter][k];
String count = "" + d.getCount(j);