HierarchicalClustering Compute Method TIBCO Spotfire 6.0 API Reference
Computes the Hierarchical clusterings requested in row and column settings.

Namespace: Spotfire.Dxp.Data.Computations.Clustering
Assembly: Spotfire.Dxp.Data (in Spotfire.Dxp.Data.dll) Version: 13.19.7018.3940 (13.19.7018.3940)
Syntax

public static HierarchicalClusteringOutput Compute(
	DataRowReader matrixOfDoublesReader,
	HierarchicalClusteringSettings rowSettings,
	HierarchicalClusteringSettings columnSettings,
	HierarchicalClusteringOptions clusteringOptions
)

Parameters

matrixOfDoublesReader
Type: Spotfire.Dxp.Data DataRowReader
This DataRowReader must provide a matrix of doubles, without any missing values.
rowSettings
Type: Spotfire.Dxp.Data.Computations.Clustering HierarchicalClusteringSettings
Clustering requested on the rows (null allowed if columnSettingsis not null).
columnSettings
Type: Spotfire.Dxp.Data.Computations.Clustering HierarchicalClusteringSettings
Clustering requested on the columns (null allowed if rowSettingsis not null).
clusteringOptions
Type: Spotfire.Dxp.Data.Computations.Clustering HierarchicalClusteringOptions
Options for thread and memory limits, as a ClusteringOptions object (null is allowed giving the same options as ClusteringOptions.Default).

Return Value

Type: HierarchicalClusteringOutput
A HierarchicalClusteringOutput object.
See Also