A program to recognize and reward our most engaged community members
ExampleSet exampleSet = operator.getInput(ExampleSet.class);for (Attribute attribute : exampleSet.getAttributes()) { String name = attribute.getName(); double bound = 3; for (Example example : exampleSet) { if(example[name]<=-bound) example[name] = -bound; else if(example[name]>=bound) example[name] = bound; }}return exampleSet;