Creates a new R data file in .rda format for writing.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static RdataStream Append(
Stream stream,
bool compress = true,
bool ascii = false
)
Public Shared Function Append (
stream As Stream,
Optional compress As Boolean = true,
Optional ascii As Boolean = false
) As RdataStream
public:
static RdataStream^ Append(
Stream^ stream,
bool compress = true,
bool ascii = false
)
static member Append :
stream : Stream *
?compress : bool *
?ascii : bool
(* Defaults:
let _compress = defaultArg compress true
let _ascii = defaultArg ascii false
*)
-> RdataStream
Parameters
- stream
- Type: System.IOStream
The stream the objects should be written to. - 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
.
Return Value
Type:
RdataStreamAn
RdataStream that can be written to.
If the file exists, it is overwritten.
Reference