Click or drag to resize

ClusterAnalysis(DataFrame) Constructor

Default constructor. Constructs a ClusterAnalysis instance from the given data, using the current default distance and linkage delegates.

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

Parameters

data  DataFrame
A data frame containing the data. Each row represents an object to be clustered. Non-numeric columns are ignored.
Remarks
The default distance and linkage delegates are Distance.EuclideanFunction and Linkage.SingleFunction, unless changed using the static DefaultDistanceFunction and DefaultLinkageFunction properties.
See Also