Writes a data frame to a file in delimited text format.
Namespace:
Extreme.Data.Text
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static void Write<R, C>(
string path,
DataFrame<R, C> dataFrame,
DelimitedTextOptions options = null
)
Public Shared Sub Write(Of R, C) (
path As String,
dataFrame As DataFrame(Of R, C),
Optional options As DelimitedTextOptions = Nothing
)
public:
generic<typename R, typename C>
static void Write(
String^ path,
DataFrame<R, C>^ dataFrame,
DelimitedTextOptions^ options = nullptr
)
static member Write :
path : string *
dataFrame : DataFrame<'R, 'C> *
?options : DelimitedTextOptions
(* Defaults:
let _options = defaultArg options null
*)
-> unit
Parameters
- path
- Type: SystemString
The path to the file. - dataFrame
- Type: Extreme.DataAnalysisDataFrameR, C
The data frame to write to the file. - 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.
Reference