Package org.encog.app.analyst.analyze

Examples of org.encog.app.analyst.analyze.PerformAnalysis


        file.toString());

    this.script.getProperties().setProperty(
        ScriptProperties.SETUP_CONFIG_INPUT_HEADERS, headers);

    final PerformAnalysis a = new PerformAnalysis(this.script,
        file.toString(), headers, format);
    a.process(this);

  }
View Full Code Here


        file.toString());

    this.script.getProperties().setProperty(
        ScriptProperties.SETUP_CONFIG_INPUT_HEADERS, headers);

    final PerformAnalysis a = new PerformAnalysis(this.script,
        file.toString(), headers, format);
    a.process(this);

  }
View Full Code Here

   * @param format The format of the file.
   */
  public void reanalyze(final File file, final boolean headers,
      final AnalystFileFormat format) {

    final PerformAnalysis a = new PerformAnalysis(this.script,
        file.toString(), headers, format);
    a.process(this);

  }
View Full Code Here

  public void analyze(File theFilename) {
    final boolean headers = this.analyst.getScript().getProperties().getPropertyBoolean(ScriptProperties.SETUP_CONFIG_INPUT_HEADERS);
    final AnalystFileFormat fmt = this.analyst.getScript().getProperties().getPropertyFormat(ScriptProperties.SETUP_CONFIG_CSV_FORMAT);
   
   
    PerformAnalysis analyze = new PerformAnalysis(
        this.analyst.getScript(),
        theFilename.toString(),
        headers,
        fmt);
   
    analyze.process(this.analyst);
  }
View Full Code Here

TOP

Related Classes of org.encog.app.analyst.analyze.PerformAnalysis

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.