A program to recognize and reward our most engaged community members
List<Attribute> listOfAttributes = // create attributes hereMemoryExampleTable table = new MemoryExampleTable(listOfAttributes);double[] doubleArray = new double[numberOfColumns];// fill your data array// numerical datadoubleArray = Double.parseDouble(value);// nominal datadoubleArray = attribute.getMapping().mapString("Im a string!");table.addDataRow(new DoubleArrayDataRow(doubleArray));// now create the examplesetExampleSet exSet = table.createExampleSet();
IOContainer result = process.run(new IOContainer{ exSet }
<?xml version="1.0" encoding="UTF-8" standalone="no"?><process version="5.2.002"> <context> <input/> <output/> <macros/> </context> <operator activated="true" class="process" compatibility="5.2.002" expanded="true" name="Process"> <process expanded="true" height="116" width="279"> <operator activated="true" class="dbscan" compatibility="5.2.002" expanded="true" height="76" name="Clustering" width="90" x="179" y="30"/> <connect from_port="input 1" to_op="Clustering" to_port="example set"/> <connect from_op="Clustering" from_port="cluster model" to_port="result 1"/> <portSpacing port="source_input 1" spacing="0"/> <portSpacing port="source_input 2" spacing="0"/> <portSpacing port="sink_result 1" spacing="0"/> <portSpacing port="sink_result 2" spacing="0"/> </process> </operator></process>
<connect from_port="input 1" to_op="Clustering" to_port="example set"/>
process.getRootOperator().getSubprocess(0).getInnerSources().getPortByIndex(YourDesiredPortIndexWhere0IsTheFirstOne).connectTo( process.getOperator("YourOperatorName").getInputPorts().getPortByName("example set"));