Writes a data frame to a stream in delimited text format.
Namespace: Extreme.Data.TextAssembly: Extreme.Data (in Extreme.Data.dll) Version: 1.0.16170.0 (1.0.16328.0)
public static void Write<R, C>(
Stream stream,
DataFrame<R, C> dataFrame,
DelimitedTextOptions options = null
)
Public Shared Sub Write(Of R, C) (
stream As Stream,
dataFrame As DataFrame(Of R, C),
Optional options As DelimitedTextOptions = Nothing
)
public:
generic<typename R, typename C>
static void Write(
Stream^ stream,
DataFrame<R, C>^ dataFrame,
DelimitedTextOptions^ options = nullptr
)
static member Write :
stream : Stream *
dataFrame : DataFrame<'R, 'C> *
?options : DelimitedTextOptions
(* 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.TextDelimitedTextOptions
A DelimitedTextOptions 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.
Numerical Libraries
Supported in: 6.0
Reference