Constructs a DFGenericColumn instance with the given name and a missing value as specified in StatsSettings.GenericMissingValue. Column elements are initialized with data from the given collection.

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

Syntax

C#
public DFGenericColumn(
	string name,
	ICollection data
)
Visual Basic (Declaration)
Public Sub New ( _
	name As String, _
	data As ICollection _
)
Visual C++
public:
DFGenericColumn(
	String^ name, 
	ICollection^ data
)

Parameters

name
Type: System..::.String
The name of the column.
data
Type: System.Collections..::.ICollection
A collection of objects.

Remarks

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

See Also