Click or drag to resize

DFIntColumn(String, IDFColumn) Constructor

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DFIntColumn(
	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 int.
Remarks
If the specified column is a DFIntColumn, then this new column will use its integer format and missing value settings. Otherwise, the defaults in StatsSettings.IntegerFormat and StatsSettings.IntegerMissingValue will be used.
See Also