Constructs a DataFrame instance from the given string.

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

Syntax

C#
public DataFrame(
	string str,
	bool hasHeader,
	bool hasRowKeys,
	string delimiter,
	bool parse
)
Visual Basic (Declaration)
Public Sub New ( _
	str As String, _
	hasHeader As Boolean, _
	hasRowKeys As Boolean, _
	delimiter As String, _
	parse As Boolean _
)
Visual C++
public:
DataFrame(
	String^ str, 
	bool hasHeader, 
	bool hasRowKeys, 
	String^ delimiter, 
	bool parse
)

Parameters

str
Type: System..::.String
A formatted string representation of a data frame.
hasHeader
Type: System..::.Boolean
A boolean value indicating whether or not the string contains column headers.
hasRowKeys
Type: System..::.Boolean
A boolean value indicating whether or not the string contains row keys.
delimiter
Type: System..::.String
The column delimiter.
parse
Type: System..::.Boolean
A boolean value indicating whether to parse the column types, or treat everything as string data.

See Also