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(
string path,
IEnumerable<DataFrame<long, string>> dataFrames,
IEnumerable<string> names,
bool compress = true,
bool ascii = false
)
Public Shared Sub Write (
path As String,
dataFrames As IEnumerable(Of DataFrame(Of Long, String)),
names As IEnumerable(Of String),
Optional compress As Boolean = true,
Optional ascii As Boolean = false
)
public:
static void Write(
String^ path,
IEnumerable<DataFrame<long long, String^>^>^ dataFrames,
IEnumerable<String^>^ names,
bool compress = true,
bool ascii = false
)
static member Write :
path : string *
dataFrames : IEnumerable<DataFrame<int64, string>> *
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.GenericIEnumerableDataFrameInt64, String
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
.
Reference