Click or drag to resize

DataFrameLoad(StreamReader, String) Method

Imports a data frame from the given stream reader.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DataFrame Load(
	StreamReader reader,
	string name
)

Parameters

reader  StreamReader
The input stream reader.
name  String
The name of the data frame.

Return Value

DataFrame
A new data frame.
Exceptions
ExceptionCondition
NMathExceptionThrown if an I/O error is encountered, or if the file is in the wrong format.
Remarks
The underlying stream is assumed to contain column headers and row keys. Column data is assumed to be tab delimited.
See Also