Rdata
            
            
            
            
            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 Create(
	string path,
	bool compress = true,
	bool ascii = false
)Parameters
- path String
- The path to the file.
- 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.