FastVector attInfo = new FastVector();
for (int i = 0; i < miningSchemaI.numAttributes(); i++) {
Attribute tempA = miningSchemaI.attribute(i);
if (tempA.isString()) {
FastVector valueVector = new FastVector();
for (int j = 0; j < tempA.numValues(); j++) {
valueVector.addElement(tempA.value(j));
}
Attribute newAtt = new Attribute(tempA.name(), valueVector);
attInfo.addElement(newAtt);
} else {