CategoricalVariableAdd(Double, String) Method

Adds a category having the specified code and label to the CategoricalVariable.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public void Add(
	double code,
	string label
)

Parameters

code  Double
The category code.
label  String
The category label.

Exceptions

ArgumentNullExceptionlabel is null.
ArgumentOutOfRangeExceptionlabel is empty, or consists only of white-space characters.
InvalidOperationException The CategoricalVariable is read-only.
-or-
A category with the same code or label already exists in the CategoricalVariable.

See Also