Category Class

Represents a value that can be taken on by a categorical variable.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public class Category
Inheritance
Object    Category

Remarks

A Category instance represents a possible value of a categorical variable by means of a real number, the Code, and a string, the Label.

A Category object is immutable (read-only), because its value cannot be modified after it has been instantiated. Categories can be created only by calling method Add(Double) or Add(Double, String), adding them to a CategoricalVariable object.

Note that a category is identified by its Code or by its Label. As a consequence, a Category cannot be added to a CategoricalVariable if such variable already contains another category having the same code or the same label of the category to be added.

Properties

Code Gets the category code.
Label Gets the category label.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToString Returns a String that represents this instance.
(Overrides ObjectToString)

See Also