Click or drag to resize

ClusterAnalysis(DataFrame, LinkageFunction) 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,
	LinkageFunction linkageFunction
)

Parameters

data  DataFrame
A data frame containing the data. Each row represents an object to be clustered. Non-numeric columns are ignored.
linkageFunction  LinkageFunction
A delegate for computing the distance between clusters.
Remarks
Uses the current default distance function.
See Also