Returns a formatted string representation of this data frame.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public string ToString(
	bool exportHeader,
	bool exportRowKeys,
	string delimiter
)
Visual Basic (Declaration)
Public Function ToString ( _
	exportHeader As Boolean, _
	exportRowKeys As Boolean, _
	delimiter As String _
) As String
Visual C++
public:
String^ ToString(
	bool exportHeader, 
	bool exportRowKeys, 
	String^ delimiter
)

Parameters

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

Return Value

A formatted string representation of this data frame.

See Also