Writes the data frames in a collection to the specified file.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static void Write(
Stream stream,
IDictionary<string, DataFrame<long, string>> dataFrames,
bool compress = true,
bool ascii = false
)
Public Shared Sub Write (
stream As Stream,
dataFrames As IDictionary(Of String, DataFrame(Of Long, String)),
Optional compress As Boolean = true,
Optional ascii As Boolean = false
)
public:
static void Write(
Stream^ stream,
IDictionary<String^, DataFrame<long long, String^>^>^ dataFrames,
bool compress = true,
bool ascii = false
)
static member Write :
stream : Stream *
dataFrames : IDictionary<string, DataFrame<int64, string>> *
?compress : bool *
?ascii : bool
(* Defaults:
let _compress = defaultArg compress true
let _ascii = defaultArg ascii false
*)
-> unit
Parameters
- stream
- Type: System.IOStream
The stream to write the data frames to. - dataFrames
- Type: System.Collections.GenericIDictionaryString, DataFrameInt64, String
A dictionary that maps names to the data frames
to write. - 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