The entopy weighted k-means clustering algorithm is a subspace
clusterer ideal for high dimensional data. Along with each cluster we
also obtain variable weights that provide a relative measure of the
importance of each variable to that cluster.
This plot visualises these relative measures of variable importance
for each of the clusters using a heatmap. The top dendrogram
highlights the relationship between the clusters and the right side
dendrogram provides a visual clue to the correlation between the variables.
The plot.ewkm() function uses heatmap() to display the weights. The
levelplot.ewkm() uses levelplot() with dendrogramGlobs from the
lattice package. Note that plot() will immediately draw the plot while
levelplot() does not draw immediately but returns a result object
which must be plot()ed.