CategoricalEntailmentEnsembleClassifierEvaluateAccuracy Method

Returns the accuracy of a predicted classification with respect to an actual one.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static double EvaluateAccuracy(
	CategoricalDataSet predictedDataSet,
	int predictedResponseVariableIndex,
	CategoricalDataSet actualDataSet,
	int actualResponseVariableIndex
)

Parameters

predictedDataSet  CategoricalDataSet
The data set containing the predicted classification.
predictedResponseVariableIndex  Int32
The zero-based index of the column in predictedDataSet containing the predictions about the response variable applied for classifying.
actualDataSet  CategoricalDataSet
The data set containing the actual classification.
actualResponseVariableIndex  Int32
The zero-based index of the column in actualDataSet containing the observations about the response variable applied for classifying.

Return Value

Double
The accuracy of a predicted classification with respect to an actual one.

Exceptions

ArgumentNullExceptionpredictedDataSet is null.
-or-
actualDataSet is null.
ArgumentOutOfRangeExceptionpredictedResponseVariableIndex is not a valid column index for the Data of predictedDataSet.
-or-
actualResponseVariableIndex is not a valid column index for the Data of actualDataSet.
ArgumentExceptionactualDataSet has not the same NumberOfRows of parameter predictedDataSet.

See Also