Writes a data frame to a stream in JSON format.
Namespace:
Extreme.Data.Json
Assembly:
Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.0
public static void Write<R, C>(
Stream stream,
DataFrame<R, C> dataFrame,
JsonOptions options = null
)
Public Shared Sub Write(Of R, C) (
stream As Stream,
dataFrame As DataFrame(Of R, C),
Optional options As JsonOptions = Nothing
)
public:
generic<typename R, typename C>
static void Write(
Stream^ stream,
DataFrame<R, C>^ dataFrame,
JsonOptions^ options = nullptr
)
static member Write :
stream : Stream *
dataFrame : DataFrame<'R, 'C> *
?options : JsonOptions
(* Defaults:
let _options = defaultArg options null
*)
-> unit
Parameters
- stream
- Type: System.IOStream
A stream. - dataFrame
- Type: Extreme.DataAnalysisDataFrameR, C
The data frame to write to the stream. - 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.
Reference