Rds File.Write Data Frame Method
Saves a data frame to an R data file.
Definition
Namespace: Extreme.Data.R
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
public static void WriteDataFrame(
DataFrame<long, string> dataFrame,
string path,
bool compress = true,
bool ascii = false
)
Parameters
- dataFrame DataFrame<Int64, String>
- The data frame to serialize.
- path String
- The path to the file to save to.
- compress Boolean (Optional)
- (Optional.) Specifies whether the output should be compressed using gzip compression. The default is true.
- ascii Boolean (Optional)
- (Optional.) Specifies whether the output should be written in ASCII format as opposed to binary. The default is false.