Click or drag to resize

ClusterAnalysis(DataFrame, DistanceFunction) Constructor

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

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

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.
Remarks
Uses the current default linkage function.
See Also