Rdata File.Append Method
Creates a new R data file in .rda format for writing.
Definition
Namespace: Extreme.Data.R
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
An RdataStream that can be written to.
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
public static RdataStream Append(
Stream stream,
bool compress = true,
bool ascii = false
)
Parameters
- stream Stream
- The stream the objects should be written to.
- compress Boolean (Optional)
- Optional. Specifies whether the data should be compressed. The default is true.
- ascii Boolean (Optional)
- Optional. Specifies whether the data should be written in human-readable ASCII format. The default is false.
Return Value
RdataStreamAn RdataStream that can be written to.
Remarks
If the file exists, it is overwritten.