Click or drag to resize

ExtensionsEvaluateClusteringTInstance Method (ClusteringResultTInstance, IInternalEvaluationCriterionTInstance)

Namespace:  Aglomera
Assembly:  Aglomera (in Aglomera.dll) Version: 1.1.0
Syntax
C#
public static ICollection<ClusterSetEvaluation<TInstance>> EvaluateClustering<TInstance>(
	this ClusteringResult<TInstance> clustering,
	IInternalEvaluationCriterion<TInstance> criterion
)
where TInstance : Object, IComparable<TInstance>
Request Example View Source

Parameters

clustering
Type: AglomeraClusteringResultTInstance
The cluster-sets to be evaluated.
criterion
Type: Aglomera.Evaluation.InternalIInternalEvaluationCriterionTInstance
The criterion used to evaluate the cluster-sets.

Type Parameters

TInstance
The type of instance considered.

Return Value

Type: ICollectionClusterSetEvaluationTInstance
A list containing the evaluations for each cluster-set.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ClusteringResultTInstance. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also