Dissimilarity Plot
Visualizes a dissimilarity matrix using seriation and matrix shading using the method developed by Hahsler and Hornik (2011). Entries with lower dissimilarities (higher similarity) are plotted darker. Dissimilarity plots can be used to uncover hidden structure in the data and judge cluster quality.
dissplot(x, labels = NULL, method = "Spectral", control = NULL, options = NULL, ...)
x |
an object of class |
labels |
|
method |
a list with up to three elements or a single character string. Use a single character string to apply the same algorithm to reorder the clusters (inter cluster seriation) as well as the objects within each cluster (intra cluster seriation). If separate algorithms for inter and intra cluster seriation are
required, Set method to The third list element (named |
control |
a list of control options passed on to the seriation
algorithm.
In case of two different seriation algorithms, |
options |
a list with options for plotting the matrix. The list can contain the following elements:
|
... |
further arguments are added to |
The plot can also be used to visualize cluster quality (see Ling 1973). Objects belonging to the same cluster are displayed in consecutive order. The placement of clusters and the within cluster order is obtained by a seriation algorithm which tries to place large similarities/small dissimilarities close to the diagonal. Compact clusters are visible as dark squares (low dissimilarity) on the diagonal of the plot. Additionally, a Silhouette plot (Rousseeuw 1987) is added. This visualization is similar to CLUSION (see Strehl and Ghosh 2002), however, allows for using arbitrary seriating algorithms.
Note: Since pimage
uses grid, it should not be mixed with base R primitive plotting
functions, but the appropriate functions in grid-package
.
An invisible object of class cluster_proximity_matrix
with the following
elements:
order |
|
cluster_order |
|
method |
vector of character strings indicating the seriation methods
used for plotting |
k |
|
description |
a |
This object can be used for plotting via
plot(x, options = NULL, ...)
, where x
is the
object and options
contains a list with plotting options (see above).
Michael Hahsler
Hahsler, M. and Hornik, K. (2011): Dissimilarity plots: A visual exploration tool for partitional clustering. Journal of Computational and Graphical Statistics, 10(2):335–354. doi: 10.1198/jcgs.2010.09139
Ling, R.F. (1973): A computer generated aid for cluster analysis. Communications of the ACM, 16(6), 355–361. doi: 10.1145/362248.362263
Rousseeuw, P.J. (1987): Silhouettes: A graphical aid to the interpretation and validation of cluster analysis. Journal of Computational and Applied Mathematics, 20(1), 53–65. doi: 10.1016/0377-0427(87)90125-7
Strehl, A. and Ghosh, J. (2003): Relationship-based clustering and visualization for high-dimensional data mining. INFORMS Journal on Computing, 15(2), 208–230. doi: 10.1287/ijoc.15.2.208.14448
grid-package
,
dist
,
seriate
,
pimage
and
hmap
.
data("iris") d <- dist(iris[-5]) ## plot original matrix res <- dissplot(d, method = NA) ## plot reordered matrix using the nearest insertion algorithm (from tsp) res <- dissplot(d, method = "TSP", options = list(main = "Seriation (TSP)")) ## cluster with pam (we know iris has 3 clusters) library("cluster") l <- pam(d, 3, cluster.only = TRUE) ## we use a grid layout to place several plots on a page library("grid") grid.newpage() pushViewport(viewport(layout=grid.layout(nrow = 2, ncol = 2), gp = gpar(fontsize = 8))) pushViewport(viewport(layout.pos.row = 1, layout.pos.col = 1)) ## visualize the clustering (using Spectral between clusters and MDS within) res <- dissplot(d, l, method = list(inter = "Spectral", intra = "MDS"), options = list(main = "PAM + Seriation - standard", newpage = FALSE)) popViewport() pushViewport(viewport(layout.pos.row = 1, layout.pos.col = 2)) ## more visualization options. Note that we reuse the reordered object res! ## color: use 10 shades red-blue plot(res, options = list(main = "PAM + Seriation", col= bluered(10, bias=.5), newpage = FALSE)) popViewport() pushViewport(viewport(layout.pos.row = 2, layout.pos.col = 1)) ## threshold (using zlim) and cubic scale to highlight differences plot(res, options = list(main = "PAM + Seriation - threshold", zlim = c(0, 1.5), col = greys(100, power = 2), newpage = FALSE)) popViewport() pushViewport(viewport(layout.pos.row = 2, layout.pos.col = 2)) ## use custom (logistic) scale plot(res, options = list(main = "PAM + Seriation - logistic scale", col= hcl(c = 0, l = (plogis(seq(10, 0, length=100), location = 2, scale = 1/2, log = FALSE))*100), newpage = FALSE)) popViewport(2) ## the reordered_cluster_dissimilarity_matrix object res names(res)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.