C# Class Encog.App.Analyst.CSV.AnalystEvaluateCSV

Inheritance: Encog.App.Analyst.CSV.Basic.BasicFile
Datei anzeigen Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
Analyze ( EncogAnalyst theAnalyst, FileInfo inputFile, bool headers, CSVFormat format ) : void

Analyze the data. This counts the records and prepares the data to be processed.

Process ( FileInfo outputFile, IMLMethod method ) : void

Process the file.

Private Methods

Method Description
PrepareOutputFile ( FileInfo outputFile ) : StreamWriter

Prepare the output file, write headers if needed.

Method Details

Analyze() public method

Analyze the data. This counts the records and prepares the data to be processed.
public Analyze ( EncogAnalyst theAnalyst, FileInfo inputFile, bool headers, CSVFormat format ) : void
theAnalyst Encog.App.Analyst.EncogAnalyst The analyst to use.
inputFile System.IO.FileInfo The input file.
headers bool True if headers are present.
format Encog.Util.CSV.CSVFormat The format.
return void

Process() public method

Process the file.
public Process ( FileInfo outputFile, IMLMethod method ) : void
outputFile System.IO.FileInfo The output file.
method IMLMethod THe method to use.
return void