C# Class Encog.App.Analyst.CSV.Basic.BasicCachedFile

Inheritance: BasicFile
Datei anzeigen Open project: encog/encog-silverlight-core

Public Methods

Method Description
AddColumn ( BaseCachedColumn column ) : void

Add a new column.

Analyze ( FileInfo input, bool headers, CSVFormat format ) : void

Analyze the input file.

BasicCachedFile ( ) : System

Construct the object.

GetColumnData ( String name, ReadCSV csv ) : String

Get the data for a specific column.

Private Methods

Method Description
AttemptResolveName ( String name ) : String

Attempt to resolve a column name.

Method Details

AddColumn() public method

Add a new column.
public AddColumn ( BaseCachedColumn column ) : void
column BaseCachedColumn The column to add.
return void

Analyze() public method

Analyze the input file.
public Analyze ( FileInfo input, bool headers, CSVFormat format ) : void
input System.IO.FileInfo The input file.
headers bool True, if there are headers.
format Encog.Util.CSV.CSVFormat The format of the CSV data.
return void

BasicCachedFile() public method

Construct the object.
public BasicCachedFile ( ) : System
return System

GetColumnData() public method

Get the data for a specific column.
public GetColumnData ( String name, ReadCSV csv ) : String
name String The column to read.
csv Encog.Util.CSV.ReadCSV The CSV file to read from.
return String