Using Self-Organizing Maps with SOMbrero for dissimilarity matrices

To limit this documentation size, most figures are not displayed in the version of the vignette included in the package. To see all figures, you can rerun the vignettes, changing the following option to TRUE:

knitr::opts_chunk$set(include = FALSE)

Alternatively, this compilation is also available at: http://sombrero.nathalievialaneix.eu/articles/e-doc-relationalSOM.html

Basic package description

SOMbrero implements different variants of the Self-Organizing Map algorithm (also called Kohonen's algorithm). To process a given dataset with the SOM algorithm, you can use the function trainSOM().

This documentation only considers the case of dissimilarity matrices.

library("ggplot2")
library("SOMbrero")

Arguments

The trainSOM function has several arguments, but only the first one is required. This argument is x.data which is the dataset used to train the SOM. In this documentation, it is passed to the function as a square matrix or data frame, which entries are dissimilarity measures between pairs of observations. The diagonal of this matrix must contain only zeros.

The other arguments are the same as the arguments passed to the initSOM function (they are parameters defining the algorithm, see help(initSOM) for further details).

Outputs

The trainSOM function returns an object of class somRes (see help(trainSOM) for further details on this class).

Graphics

The following table indicates which graphics are available for a relational SOM.

| What

SOM or SC
Type | SOM
Energy


| Obs



| Prototypes



| Add



| SuperCluster
(no what)


| Obs



| Prototypes



| Add



| |:------------|:--------|:-----|:------------|:-----|:-------------|:-----|:------------|:-----| | (no type) | x | | | | | | | | | hitmap | | x | | | | x | | | | color | | | | x | | | | | | lines | | | x | x | | | x | x | | meanline | | | | x | | | | x | | barplot | | | x | x | | | x | x | | pie | | | | x | | | | x | | boxplot | | | | x | | | | x | | poly.dist | | | x | | | | x | | | umatrix | | | x | | | | | | | smooth.dist | | | x | | | | | | | mds | | | x | | | | x | | | grid.dist | | | x | | | | | | | words | | | | x | | | | | | names | | x | | x | | x | | | | graph | | | | x | | | | x | | projgraph | | | | x | | | | x | | grid | | | | | | | x | | | dendrogram | | | | | x | | | | | dendro3d | | | | | x | | | |

Case study: the lesmis data set

The lesmis data set is based on the co-appearance graph of the characters of the novel Les Misérables (Victor Hugo). Each vertex stands for a character whose name is given by the vertex label. One edge means that the corresponding two characters appear in a common chapter in the book. Each edge also has a value indicating the number of co-appearances. The co-appearance network has been extracted by D.E. Knuth (1993).

The lesmis data contain two objects: the first one,lesmis, is an igraph object (see the igraph web page), with r data(lesmis); vcount(lesmis) nodes and r ecount(lesmis) edges.

Further information on this data set is provided with help(lesmis).

data(lesmis)
lesmis
plot(lesmis, vertex.size = 0)

The dissim.lesmis object is a matrix with entries equal to the length of the shortest path between two characters (obtained with the function shortest.paths of package igraph). Note that its row and column names have been initialized with the characters' names to ease the use of the graphical functions of SOMbrero.

Training the SOM

set.seed(622)
mis.som <- trainSOM(x.data=dissim.lesmis, type = "relational", nb.save = 10,
                   init.proto = "random", radius.type = "letremy")
plot(mis.som, what="energy")

The dissimilarity matrix dissim.lesmis is passed to the trainSOM function as input. As the SOM intermediate backups have been registered (nb.save = 10), the energy evolution can be plotted: it stabilized in the last 100 iterations.

Resulting clustering

The clustering component provides the classification of each of the 77 characters. The table function is a simple way to view data distribution on the map.

mis.som$clustering
table(mis.som$clustering)
plot(mis.som)

The clustering can be displayed using the plot function with type = names.

plot(mis.som, what = "obs", type = "names")

In this clustering, the main character, Valjean, is in a central position (in cluster 8) and some clusters are easily identified as sub-stories around Javert. For instance, clusters 10, 15 and 20 are related to the Thénardier family, with (for instance), cluster 20 being the cluster of Gavroche and his two brothers (named children 1 and 2).

The original graph can also be superimposed on the map:

plot(mis.som, what = "add", type = "graph", var = lesmis)

In the latter plot (which is still messy at this stage of the analysis), nodes correspond to clusters and are positioned at the cluster location on the map. The size of the nodes is proportional to the number of characters classified in this cluster and edges between nodes have a width proportional to the total weight between any two characters from the two linked clusters.

Clusters profile overviews can be plotted either with e.g., lines or barplot, that both provide an information similar to that given by "names".

plot(mis.som, what = "prototypes", type = "lines")  +
  guides(color = guide_legend(keyheight = 0.5, ncol = 2, label.theme = element_text(size = 6))) + 
  theme(axis.text.x = element_blank(), axis.ticks.x = element_blank())
plot(mis.som, what = "prototypes", type = "barplot")  +
  guides(fill = guide_legend(keyheight = 0.5, ncol = 2, label.theme = element_text(size = 6))) + 
  theme(axis.text.x = element_blank(), axis.ticks.x = element_blank())

On these graphics, one variable is represented respectively with a point or a slice. It is therefore easy to see which variable affects which cluster.

To see how different the clusters are, some graphics show the distances between prototypes. These graphics have exactly the same interpretation as for the other data types processed by SOMbrero.

plot(mis.som, what = "prototypes", type = "poly.dist")
plot(mis.som, what = "prototypes", type = "smooth.dist")
plot(mis.som, what = "prototypes", type = "umatrix")
plot(mis.som, what = "prototypes", type = "mds")
plot(mis.som, what = "prototypes", type = "grid.dist")

Here we can see that the prototypes located in the top left and top right corners of the map (e.g., clusters 5 and clusters 19-20 and 24-25) are further from the other neurons than in average.

Finally, with a graphical overview of the clustering

plot(lesmis, vertex.label.color = rainbow(25)[mis.som$clustering], 
     vertex.size = 0)
legend(x = "left", legend = 1:25, col = rainbow(25), pch = 19)

We can see that (for instance) cluster 25 is very relevant to the story: as the characters of this cluster appear only in the sub-story of the Bishop Myriel, he is the only connection for all other characters of cluster 25. The same kind of conclusion holds for cluster 20 (with Gavroche), among others. Most of the other clusters have a small number of observations: it thus seems relevant to compute super clusters.

Compute super clusters

As the number of clusters is rather large with the SOM algorithm, it is possible to perform a hierarchical clustering on top of SOM results. First, let us have an overview of the dendrogram:

plot(superClass(mis.som))

According to the proportion of variance explained by super clusters, 5 groups seem to be a good choice (4 groups would have been relevant also. The clustering with 5 groups creates a group with only one cluster in it).

sc.mis <- superClass(mis.som, k = 5)
summary(sc.mis)
table(sc.mis$cluster)
plot(sc.mis)
plot(sc.mis, what = "prototypes", type = "grid")
plot(sc.mis, what = "prototypes", type = "lines")
plot(sc.mis, what = "prototypes", type = "mds")
plot(sc.mis, type = "dendro3d")
plot(lesmis, vertex.size = 0, 
     vertex.label.color = rainbow(5)[sc.mis$cluster[mis.som$clustering]])
legend(x = "left", legend = paste("SC", 1:5), col = rainbow(5), pch = 19)

SOMbrero also contains functions to compute a projected graph based on the super-clusters and to display it:

projectIGraph(sc.mis, lesmis)
par(mar = rep(0,4))
plot(sc.mis, what = "add", type = "projgraph", variable = lesmis, s.radius = 2)

This representation provides a simplified and interpretable display of the graph where the super clusters are represented by nodes with sizes proportional to the number of characters classified in them. The nodes are positioned at the center of gravity of the map clusters included in each super cluster. They are linked to each other with edges with width proportional to the total number of links between two characters of the corresponding super clusters. Here, the central brown/green node is the one of Valjean and the other main characters (super cluster 2), which appears to be strongly related to super cluster 4 in blue, with Gavroche's neighbors.

Session information

This vignette has been computed with the following environment:

sessionInfo()


Try the SOMbrero package in your browser

Any scripts or data that you put into this service are public.

SOMbrero documentation built on Jan. 4, 2022, 1:07 a.m.