The upper bound used on the sum of the number of distinct values found among the classification variables in x.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual int MaxClass { get; set; }
Visual Basic (Declaration)
Public Overridable Property MaxClass As Integer
Visual C++
public:
virtual property int MaxClass {
	int get ();
	void set (int value);
}

Field Value

An int representing the upper bound used on the sum of the number of distinct values found among the classification variables in x.

Default: MaxClass is the number of observations in x.

Remarks

Consider a model consisting of two class variables, one with the values {1, 2, 3, 4} and a second with the values {0, 1}, then the total number of different classification values is 4 + 2 = 6, and MaxClass\gt= 6.

See Also