Click or drag to resize

DataFrameToString(Boolean, Boolean, String) Method

Returns a formatted string representation of this data frame.

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

Parameters

exportHeader  Boolean
A boolean value indicated whether or not the returned string should include column headers.
exportRowKeys  Boolean
A boolean value indicated whether or not the returned string should include row keys.
delimiter  String
The column delimiter.

Return Value

String
A formatted string representation of this data frame.
Remarks
Formatting uses the column formatting which by default is StatsSettings.NumericFormat, StatsSettings.IntegerFormat and StatsSettings.DateTimeFormat.
See Also