Matrix Market File.Read Data Frame Method
Definition
Namespace: Numerics.NET.Data.Text
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 4.0.3
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 4.0.3
Overload List
Read | Reads a data frame from a stream in Matrix Market format. |
Read | Reads a data frame from a stream in Matrix Market format. |
ReadDataFrame(Stream, TextOptions)
Reads a data frame from a stream in Matrix Market format.
public static DataFrame<long, string> ReadDataFrame(
Stream stream,
TextOptions options = null
)
Parameters
- stream Stream
- A stream.
- options TextOptions (Optional)
- A TextOptions object that specifies the options to use when reading the file.
Return Value
DataFrame<Int64, String>The data frame that was read from the stream pointed to by stream.
ReadDataFrame<R, C>(Stream, TextOptions)
Reads a data frame from a stream in Matrix Market format.
public static DataFrame<R, C> ReadDataFrame<R, C>(
Stream stream,
TextOptions options = null
)
Parameters
- stream Stream
- A stream.
- options TextOptions (Optional)
- A TextOptions object that specifies the options to use when reading the file.
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
DataFrame<R, C>The data frame that was read from the stream pointed to by stream.