 | DataFrameSave(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
)
Public Sub Save (
filename As String
)
public:
void Save(
String^ filename
)
member Save :
filename : string -> unit
Parameters
- filename String
- The output filename.
Remarks
By default, the saved file includes column headers and row keys.
Column data is tab delimited. Formatting uses the column formatting which by default is
StatsSettings.NumericFormat, StatsSettings.IntegerFormat and
StatsSettings.DateTimeFormat.
See Also