Constructs a DFIntColumn instance with the given name, an integer format as specified in StatsSettings.IntegerFormat and a missing value as specified in StatsSettings.IntegerMissingValue. Column elements are initialized with data from the given array.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public DFIntColumn(
	string name,
	params int[] data
)
Visual Basic (Declaration)
Public Sub New ( _
	name As String, _
	ParamArray data As Integer() _
)
Visual C++
public:
DFIntColumn(
	String^ name, 
	... array<int>^ data
)

Parameters

name
Type: System..::.String
The name of the column.
data
Type: array< System..::.Int32 >[]()[]
An array of integers.

Remarks

Once a column instance is constructed, the name cannot be changed. For a modifiable property, see Label.

See Also