Click or drag to resize

ClusterAnalysis(DataFrame, DistanceFunction, LinkageFunction) Constructor

Constructs a ClusterAnalysis instance from the given data, using the given distance and linkage delegates.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public ClusterAnalysis(
	DataFrame data,
	DistanceFunction distanceFunction,
	LinkageFunction linkageFunction
)

Parameters

data  DataFrame
A data frame containing the data. Each row represents an object to be clustered. Non-numeric columns are ignored.
distanceFunction  DistanceFunction
A delegate for computing the distance between individual objects.
linkageFunction  LinkageFunction
A delegate for computing the distance between clusters.
See Also