FrameTableFromCsv Method

Creates a new frame table from a file of comma-separated values.

Definition

Namespace: Meta.Numerics.Data
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static FrameTable FromCsv(
	TextReader reader
)

Parameters

reader  TextReader
A reader positioned at the beginning of the file.

Return Value

FrameTable
A new data frame with data from the file.

Remarks

The column names are taken from the first line of the file.

The storage type of each column is inferred from the types of objects encountered are the frame table is constructed.

See Also