Represents a Similarity or a Distance Measure that can be used in Hierarchical Clustering.
Namespace: Spotfire.Dxp.Data.Computations.ClusteringAssembly: Spotfire.Dxp.Data (in Spotfire.Dxp.Data.dll) Version: 14.10.7525.5058 (14.10.7525.5058)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Correlation | 1 |
Correlation, Pearson's correlation, Pearson's r.
Subtract the mean value of the coordinates, normalize and take the scalar product. | |
UnsignedCorrelation | 2 | Unsigned correlation is absolut value of correlation. | |
CosineCorrelation | 3 | Normalized scalar product without subtracting the mean value. | |
Tanimoto | 4 | Tanimoto Coefficient, normally only used for binary valued data. | |
Euclidean | 5 | The ordinary distance in n-dimensional space. | |
CityBlock | 6 | City block distance, Manhattan distance, L1 distance, rectilinear distance. | |
SquareEuclidean | 7 | The Euclidean distance squared. | |
HalfSquareEuclidean | 8 | The Euclidean distance squared and divided by 2; mandatory for Ward's clustering method. |
Remarks
Distances all have range [0, float.MaxValue]: Euclidean, CityBlock, SquaredEuclidean, HalfSquaredEuclidean. Distances has 0 as smallest distance and higher value for more distant pairs of objects.
Version Information
See Also