CategoricalEntailmentEnsembleClassifierClassify Method

Classifies the categorical items in the specified data set.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public CategoricalDataSet Classify(
	CategoricalDataSet dataSet,
	IndexCollection featureVariableIndexes
)

Parameters

dataSet  CategoricalDataSet
The data set whose rows contain the specified items.
featureVariableIndexes  IndexCollection
The zero-based indexes of the data set columns that contain the data about the features involved in the premises of the entailments defined by this instance.

Return Value

CategoricalDataSet
The collection of data set row indexes containing the items that satisfy the premises of the entailments defined by this instance.

Remarks

Let LaTeX equation be the Count of the FeaturePremises defined by the Entailments exploited by this instance. It is expected that featureVariableIndexes has the same count, and that the LaTeX equation-th position of featureVariableIndexes, say LaTeX equation, is the index of the column that, in dataSet, contains observations about the same feature variable on which is built the LaTeX equation-th premise of the Entailments of this instance.

Exceptions

ArgumentNullExceptiondataSet is null.
-or-
featureVariableIndexes is null.
ArgumentOutOfRangeExceptionfeatureVariableIndexes contains values which are not valid column indexes for the Data of dataSet.
ArgumentExceptionfeatureVariableIndexes has not the same Count of the FeatureVariables of this instance.

See Also