Click or drag to resize

DFNumericColumn(String, DoubleVector) Constructor

Constructs a DFNumericColumn instance with the given name, a floating-point format as specified in StatsSettings.NumericFormat and a missing value as specified in StatsSettings.NumericMissingValue. Column elements are initialized with data from the given DoubleVector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DFNumericColumn(
	string name,
	DoubleVector data
)

Parameters

name  String
The name of the column.
data  DoubleVector
A DoubleVector.
Remarks
Once a column instance is constructed, the name cannot be changed. For a modifiable property, see Label.
See Also