Reads a data frame from a file in JSON format.
Namespace:
Extreme.Data.Json
Assembly:
Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.0
public static DataFrame<R, C> ReadDataFrame<R, C>(
string path,
JsonOptions options = null
)
Public Shared Function ReadDataFrame(Of R, C) (
path As String,
Optional options As JsonOptions = Nothing
) As DataFrame(Of R, C)
public:
generic<typename R, typename C>
static DataFrame<R, C>^ ReadDataFrame(
String^ path,
JsonOptions^ options = nullptr
)
static member ReadDataFrame :
path : string *
?options : JsonOptions
(* Defaults:
let _options = defaultArg options null
*)
-> DataFrame<'R, 'C>
Parameters
- path
- Type: SystemString
The path to the file. - options (Optional)
- Type: Extreme.Data.JsonJsonOptions
A JsonOptions 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.
Reference