 | DataFrameSave(String, Boolean, Boolean, String) Method |
Exports the contents of this data frame to a text file.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic void Save(
string filename,
bool exportHeader,
bool exportRowKeys,
string delimiter
)
Public Sub Save (
filename As String,
exportHeader As Boolean,
exportRowKeys As Boolean,
delimiter As String
)
public:
void Save(
String^ filename,
bool exportHeader,
bool exportRowKeys,
String^ delimiter
)
member Save :
filename : string *
exportHeader : bool *
exportRowKeys : bool *
delimiter : string -> unit
Parameters
- filename String
- The output filename.
- exportHeader Boolean
- A boolean value indicated whether or not the saved file should
include column headers.
- exportRowKeys Boolean
- A boolean value indicated whether or not the saved file should
include row keys.
- delimiter String
- The column delimiter.
RemarksFormatting uses the column formatting which by default is StatsSettings.NumericFormat,
StatsSettings.IntegerFormat and StatsSettings.DateTimeFormat.
See Also