Values of ConditionedExampleSet
memvis70
New Altair Community Member
Answers
-
Hi,
you can do the following to retrieve the values for a column:
Regards,
Attribute att = exampleSet.getAttributes().get(NAME_OF_ATTRIBUTE);
for (Example example : exampleSet) {
example.getValue(att);
}
Marco0