Click or drag to resize

DataFrame(String, Boolean, Boolean, String, Boolean) Constructor

Constructs a DataFrame instance from the given string.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DataFrame(
	string str,
	bool hasHeader,
	bool hasRowKeys,
	string delimiter,
	bool parse
)

Parameters

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