Click or drag to resize

KMeansClustering(DataFrame) Constructor

Constructs a KMeansClustering instance from the given data.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public KMeansClustering(
	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 maximum number of iterations is used. Iteration stops when either the clustering stabilizes, or the maximum number of iterations is reached.
See Also