I have a text classification process in RapidMiner. It reads the test data from specified excel ssheet and does the classification. I have also a small Java application whic
Try this:
private SimpleExampleSet ReadExcel( File processXMLFile_, File excelFile_ ) throws IOException, XMLException, OperatorException
{
IOContainer outParameters = null;
Process readExcel = new Process( processXMLFile_ );
IOObject inObject = new SimpleFileObject( excelFile_ );
IOContainer inParameters = new IOContainer( inObject );
outParameters = readExcel.run( inParameters );
SimpleExampleSet result = (SimpleExampleSet) outParameters.getElementAt( 0 );
return result;
}
Sorry, I cannot post image with RapidMiner script if you need, I can send it to email.