temp.append(pad(stdDev, " ", maxWidth + 1 - stdDev.length(), true));
}
temp.append("\n\n");
} else {
Attribute a = m_theInstances.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_num_clusters; k++) {
DiscreteEstimator d = (DiscreteEstimator)m_model[k][i];
String count = Utils.doubleToString(d.getCount(j), maxWidth, 4).trim();