Click or drag to resize

DataFrameSave(String, Boolean, Boolean, String) Method

Exports the contents of this data frame to a text file.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void Save(
	string filename,
	bool exportHeader,
	bool exportRowKeys,
	string delimiter
)

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.
Remarks
Formatting uses the column formatting which by default is StatsSettings.NumericFormat, StatsSettings.IntegerFormat and StatsSettings.DateTimeFormat.
See Also