clusterTypes property
getter/setter pair
Implementation
Map<String, String> clusterTypes = {
'KMeans': '''
Generate clusters using a kmeans algorithm, a traditional cluster
algorithm used in statistics.
''',
'Ewkm': '''
Generate clusters using a kmeans algorithm initialised by selecting
subspaces using entropy weighting.
''',
'Hierarchical': '''
Build an agglomerative hierarchical cluster.
''',
'BiCluster': '''
Cluster by identifying suitable subsets of both the variables and the
observations, rather than just the observations as in kmeans.
''',
};