Reads a data frame from a file in fixed-width text format.
Namespace: Extreme.Data.TextAssembly: Extreme.Data (in Extreme.Data.dll) Version: 1.0.16170.0 (1.0.16170.0)
public static DataFrame<R, C> ReadDataFrame<R, C>(
string path,
FixedWidthTextOptions options
)
Public Shared Function ReadDataFrame(Of R, C) (
path As String,
options As FixedWidthTextOptions
) As DataFrame(Of R, C)
public:
generic<typename R, typename C>
static DataFrame<R, C>^ ReadDataFrame(
String^ path,
FixedWidthTextOptions^ options
)
static member ReadDataFrame :
path : string *
options : FixedWidthTextOptions -> DataFrame<'R, 'C>
Parameters
- path
- Type: SystemString
The path to the file. - options
- Type: Extreme.Data.TextFixedWidthTextOptions
A FixedWidthTextOptions 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
Type:
DataFrameR,
CThe data frame that was read from the file
pointed to by
path.
Numerical Libraries
Supported in: 6.0
Reference