Writes a sequence of data frames to the specified file.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static void Write<R, C>(
string path,
IEnumerable<DataFrame<R, C>> dataFrames,
IEnumerable<string> names,
bool compress = true,
bool ascii = false
)
Public Shared Sub Write(Of R, C) (
path As String,
dataFrames As IEnumerable(Of DataFrame(Of R, C)),
names As IEnumerable(Of String),
Optional compress As Boolean = true,
Optional ascii As Boolean = false
)
public:
generic<typename R, typename C>
static void Write(
String^ path,
IEnumerable<DataFrame<R, C>^>^ dataFrames,
IEnumerable<String^>^ names,
bool compress = true,
bool ascii = false
)
static member Write :
path : string *
dataFrames : IEnumerable<DataFrame<'R, 'C>> *
names : IEnumerable<string> *
?compress : bool *
?ascii : bool
(* Defaults:
let _compress = defaultArg compress true
let _ascii = defaultArg ascii false
*)
-> unit
Parameters
- path
- Type: SystemString
The file to write the data frames to. - dataFrames
- Type: System.Collections.GenericIEnumerableDataFrameR, C
A sequence of data frames to write. - names
- Type: System.Collections.GenericIEnumerableString
A sequence of corresponding names
for the data frames. - compress (Optional)
- Type: SystemBoolean
Optional. Specifies whether the data
should be compressed. The default is - ascii (Optional)
- Type: SystemBoolean
Optional. Specifies whether the data should
be written in human-readable ASCII format. The default is
.
Type Parameters
- R
- The type of the row keys of the data frames.
- C
- The type of the column keys of the data frames.
Reference