Package org.encog.app.analyst.csv.process

Examples of org.encog.app.analyst.csv.process.AnalystProcess


    // mark generated
    getScript().markGenerated(targetID);

    // prepare to transform
    final AnalystProcess process = new AnalystProcess(getAnalyst(),backwardSize,forwardSize);
    process.setScript(getScript());
    getAnalyst().setCurrentQuantTask(process);
    process.setReport(new AnalystReportBridge(getAnalyst()));
    final boolean headers = getScript().expectInputHeaders(sourceID);
    process.analyze(sourceFile, headers, format);
    process.process(targetFile);
    getAnalyst().setCurrentQuantTask(null);
    return process.shouldStop();
  }
View Full Code Here

TOP

Related Classes of org.encog.app.analyst.csv.process.AnalystProcess

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.