Imports a data frame from the given stream.
Namespace:
CenterSpace.NMath.StatsAssembly: 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
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.NMathException | Thrown if an I/O error is encountered, or if the file is in the wrong format. |