Click or drag to resize

DFNumericColumn(String, IDFColumn) Constructor

Constructs a DFNumericColumn instance with the given name. Column elements are initialized with data from the given column, after conversion to double.

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

Parameters

name  String
The name of the column.
data  IDFColumn
A column of data.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if the given data cannot be converted to double.
Remarks
If the specified column is a DFNumericColumn, then this new column will use its numeric format and missing value settings. Otherwise, the defaults in StatsSettings.NumericFormat and StatsSettings.NumericMissingValue will be used.
See Also