Imports a data frame from the given stream.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public static DataFrame Load(
	Stream stream,
	string name
)
Visual Basic (Declaration)
Public Shared Function Load ( _
	stream As Stream, _
	name As String _
) As DataFrame
Visual C++
public:
static DataFrame^ Load(
	Stream^ stream, 
	String^ name
)

Parameters

stream
Type: System.IO..::.Stream
The input stream.
name
Type: System..::.String
The name of the data frame.

Return Value

A new data frame.

Remarks

The stream is assumed to contain column headers and row keys. Column data is assumed to be tab delimited.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.NMathExceptionThrown if an I/O error is encountered, or if the file is in the wrong format.

See Also