Creates a new R data file in .rds format for writing.
Namespace: Extreme.Data.RAssembly: Extreme.Data (in Extreme.Data.dll) Version: 1.0.16170.0 (1.0.16170.0)
public static RdsStream Create(
string path,
bool compress = true,
bool ascii = false
)
Public Shared Function Create (
path As String,
Optional compress As Boolean = true,
Optional ascii As Boolean = false
) As RdsStream
public:
static RdsStream^ Create(
String^ path,
bool compress = true,
bool ascii = false
)
static member Create :
path : string *
?compress : bool *
?ascii : bool
(* Defaults:
let _compress = defaultArg compress true
let _ascii = defaultArg ascii false
*)
-> RdsStream
Parameters
- path
- Type: SystemString
The path to the file. - 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:
RdsStreamAn
RdsStream that can be written to.
If the file exists, it is overwritten.
Numerical Libraries
Supported in: 6.0
Reference