Reads a data frame from the specified file.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static DataFrame<R, C> ReadDataFrame<R, C>(
Stream stream
)
Public Shared Function ReadDataFrame(Of R, C) (
stream As Stream
) As DataFrame(Of R, C)
public:
generic<typename R, typename C>
static DataFrame<R, C>^ ReadDataFrame(
Stream^ stream
)
static member ReadDataFrame :
stream : Stream -> DataFrame<'R, 'C>
Parameters
- stream
- Type: System.IOStream
The stream to read from.
Type Parameters
- R
- The type of the row keys of the data frame.
- C
- The type of the column keys of the data frame.
Return Value
Type:
DataFrameR,
CThe data frame that was read from the stream.
Reference