Click or drag to resize

DataFrame(DoubleMatrix, String) Constructor

Constructs a DataFrame instance from the given matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DataFrame(
	DoubleMatrix A,
	string[] colNames
)

Parameters

A  DoubleMatrix
A matrix of double precision floating point values.
colNames  String
An array of column names.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the number of column names does not equal the number of columns in the given matrix.
Remarks
Row keys are set to nulls. Use SetRowKeys() to initialize.
See Also