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

Used by the analyst to evaluate a CSV file.
Inheritance: Encog.App.Analyst.CSV.Basic.BasicFile
Mostra file 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, IMLRegression method ) : void

Process the file.

Private Methods

Method Description
AnalystPrepareOutputFile ( 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 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 the file is in.
return void

Process() public method

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