The cumulative percentages used during encoding and decoding.

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

Syntax

C#
public virtual double[] Percentages { get; set; }
Visual Basic (Declaration)
Public Overridable Property Percentages As Double()
Visual C++
public:
virtual property array<double>^ Percentages {
	array<double>^ get ();
	void set (array<double>^ value);
}

Field Value

A double array of length nClasses containing the cumulative percentages associated with the ordinal categories.

Remarks

If a transform has been applied to the percentages then the transformed percentages are returned. Setting untransformed cumulative percentages with this method bypasses calculating cumulative percentages based on the data being encoded. The percentages must be nondecreasing in the interval [0, 100], with the last element equal to 100. If this method is used it must be called prior to any calls to the encoding and decoding methods.

See Also