Mercator for Continuous Data

C.E. Coombes, Zachary B. Abrams, Kevin R. Coombes

2022-06-30

Introduction

The Mercator package is intended to facilitate the exploratory analysis of data sets. It consists of two main parts, one devoted to tools for binary matrices, and the other focused on visualization. These visualization tools can be used with binary, continuous, categorical, or mixed data, since they only depend on a distance matrix. Each distance matrix can be visualized with multiple techniques, providing a consistent interface to thoroughly explore the data set. In thus vignette, we illustrate the visualization of a continuous data set.

The Mercator Class

First we load the package.

suppressMessages( suppressWarnings( library(Mercator) ) )

Now we load a “fake” set of synthertic continuous data that comes with the Mercator package. We will use this data set to illustrate the visualization methods.

set.seed(36766)
data(fakedata)
ls()
## [1] "fakeclin" "fakedata"
dim(fakedata)
## [1] 776 300
dim(fakeclin)
## [1] 300   4

Visualization

The Mercator Package currently supports visualization of data with methods that include standard techniques (hierarchical clustering) and large-scale visualizations (multidimensional scaling (MDS),T-distributed Stochastic Neighbor Embedding (t-SNE), and iGraph.) In order to create a Mercator object, we must provide

We are going to start with hierarchical clustering, with an arbitrarily assigned number of 4 groups.

mercury <- Mercator(dist(t(fakedata)), "euclid", "hclust", 4)
summary(mercury)
## An object of the 'Mercator' class, using the ' euclid ' metric, of size
## [1] 300 300
## Contains these visualizations:  hclust

Hierarchical Clustering

Here is a “view” of the dendrogram produced by hierarchical clustering. Note that view is an argument to the plot function for Mercator objects. If omitted, the first view in the list is used.

plot(mercury, view = "hclust")

Hierarchical clustering.

The dendrogram suggests that there might actually be more than 4 subtypes in the data, but we’re going to wait until we see some other views of the data before doing anything about that.

t-Distributed Stochastic Neighbor Embedding

Mercator can use t-distributed Stochastic Neighbor Embedding (t-SNE) plots for visualizing large-scale, high-dimensional data in a 2-dimensional space.

mercury <- addVisualization(mercury, "tsne")
plot(mercury, view = "tsne", main="t-SNE; Euclidean Distance")

A t-SNE Plot.

The t-SNE plot also suggests more than four subtypes; perhaps as many as seven or eight.

Optional t-SNE parameters, such as perplexity, can be used to fine-tune the plot when the visualization is created. Using addVisualization to create a new, tuned plot of an existing type overwrites the existing plot of that type.

mercury <- addVisualization(mercury, "tsne", perplexity = 15)
## Warning in addVisualization(mercury, "tsne", perplexity = 15): Overwriting an
## existing visualization:tsne
plot(mercury, view = "tsne",  main="t-SNE; Euclidean Distance; perplexity = 15")

A t-SNE plot with smaller perplexity.

Multi-Dimensional Scaling

Mercator allows visualization of multi-dimensional scaling (MDS) plots, as well.

mercury <- addVisualization(mercury, "mds")
plot(mercury, view = "mds", main="MDS; Euclidean Distance")

Multi-dimensional scaling.

Interestingly, the MDS plot (which is equivalent to principal components analysis, PCA, when used with Euclidean distances) doesn’t provide clear evidence of more than three or four subtypes. That’s not surprising, since groups separated in high dimensions can easily be flattened by linear projections.

iGraph

Mercator can visualize complex networks using iGraph. IN the next chunk of code, we add an iGraph visualization. We then look at the resulting graph, using three different “layouts”. The Q parameter is a cutoff (qutoff?) on the distance used to include edges; if omitted, it defaults to the 10th percentile. We arrived at the value Q=24 shown here by trial-and-error, though one could plot a histogram of the distances (via hist()) to make a more informed choice.

set.seed(73633)
mercury <- addVisualization(mercury, "graph", Q = 24)

plot(mercury, view = "graph", layout = "tsne", main="T-SNE Layout")

iGraph views.

plot(mercury, view = "graph", layout = "mds", main = "MDS Layout")

iGraph views.

plot(mercury, view = "graph", layout = "nicely", main = "'Nicely' Layout")

iGraph views.

The last layout, in this case, is possibly not so nice.

Cluster Identities

We can use the getClusters function to determine the cluster assignments and use these for further manipulation. For example, we can easily determine cluster size.

my.clust <- getClusters(mercury)
table(my.clust)
## my.clust
##  1  2  3  4 
## 82 68 74 76

We might also compare the cluster labels to the “true” subtypes in our “fake” data set.

table(my.clust, fakeclin$Type)
##         
## my.clust  1  2  3  4  5  6  7  8
##        1  0 40  0  1  0 41  0  0
##        2 30  0 36  0  0  0  2  0
##        3  4  0  0 34  0  0 36  0
##        4  0  0  0  0 41  0  0 35

Silhouette-Width Barplots

The barplot method produces a version of the “silhouette width” plot from Kaufman and Rouseeuw (and borrowed from the cluster package).

barplot(mercury)

Silhouette widths.

For each observation in the data set, the silhouette width is a measure of how much we believe that it is placed in the correct cluster. Here we see that about 10% to 20% of the observations in each cluster may be incorrectly classified, since their silhouette widths are negative.

Reclustering

We can “recluster” by specifying a different number of clusters.

mercury <- recluster(mercury, K = 8)
plot(mercury, view = "tsne")

A t-SNE plot after reclustering.

The silhouette-width barplot changes with the number of clusters. In this case, it suggests that eight clusters may not describe the data as well as four. However, the previous t-SNE plot also shows that the algorithmically derived cluster labels don’t seem to match the visible clusters very well.

barplot(mercury)

Silhouette widths with eight clusters.

Hierarchical Clusters

The clustering algorithm used within Mercator is partitioning around medoids (PAM). You can run any clustering algorithm of your choice and assign the resulting cluster labels to the Mercator object. As part of our visualizations, we have laready pefomred hierarchcai clustering. So, we can assign cluster labels by cutting the branches of the dendrogram. We can use the cutree function after extracting the dendrogram from the view. (Note that we use the remapColors function here to try to keep the same color assignments for the PAM-defined clusters and the hierarchical clusters.)

hclass <- cutree(mercury@view[["hclust"]], k = 8)
neptune <- setClusters(mercury, hclass)
neptune <- remapColors(mercury, neptune)
plot(neptune, view = "tsne")

A t-SNE plot colored by heierachical clustering.

The assignments by hierarchical clustering appear to more consistent thant eh PAM clusters with the t-SNE plot, though one suspect that the assignemnts among the pink, red, and orchid groups may be difficult. The silhouette width barplot (below) confirms that hierarchical clustering works better than PAM on this data set. Only the “red” group #4 contains a large number of apparently misclassified samples.

barplot(neptune)

True Clusters

For our fake data set, since we simulated it, we know the “true” labels. So, we can “recluster” using the true assignments.

venus <- setClusters(neptune, fakeclin$Type)
venus <- remapColors(neptune, venus)
plot(venus, view = "tsne")

A t-SNE plot with true cluster labels.

barplot(venus)

Silhouette widths with true clusters.

We can also see how the hierarchical clustering compare to the true cluster assignments.

table(getClusters(neptune), getClusters(venus))
##    
##      1  2  3  4  5  6  7  8
##   1 41  0  2  1  0  0  0  0
##   2  0 21  0  0  0  0  0  1
##   3  0  0 38  0  0  0  0  0
##   4  0  4  0 34  0  0  0  0
##   5  0  0  0  0 35  2  0  0
##   6  0  0  0  0  0 39  0  0
##   7  0  0  0  0  0  0 36  0
##   8  0  9  0  0  0  0  2 35

Appendix

This analaysis was performed in the following environment:

sessionInfo()
## R version 4.2.1 (2022-06-23 ucrt)
## Platform: x86_64-w64-mingw32/x64 (64-bit)
## Running under: Windows 10 x64 (build 19043)
## 
## Matrix products: default
## 
## locale:
## [1] LC_COLLATE=C                          
## [2] LC_CTYPE=English_United States.utf8   
## [3] LC_MONETARY=English_United States.utf8
## [4] LC_NUMERIC=C                          
## [5] LC_TIME=English_United States.utf8    
## 
## attached base packages:
## [1] stats     graphics  grDevices utils     datasets  methods   base     
## 
## other attached packages:
## [1] Mercator_1.1.2       Thresher_1.1.3       PCDimension_1.1.11  
## [4] ClassDiscovery_3.4.3 oompaBase_3.2.9      cluster_2.1.3       
## 
## loaded via a namespace (and not attached):
##  [1] viridis_0.6.2        sass_0.4.1           jsonlite_1.8.0      
##  [4] viridisLite_0.4.0    kohonen_3.0.11       bslib_0.3.1         
##  [7] askpass_1.1          highr_0.9            stats4_4.2.1        
## [10] yaml_2.3.5           slam_0.1-50          pillar_1.7.0        
## [13] lattice_0.20-45      glue_1.6.2           reticulate_1.25     
## [16] digest_0.6.29        colorspace_2.0-3     oompaData_3.1.2     
## [19] htmltools_0.5.2      Matrix_1.4-1         pkgconfig_2.0.3     
## [22] purrr_0.3.4          cpm_2.3              scales_1.2.0        
## [25] RSpectra_0.16-1      Rtsne_0.16           tibble_3.1.7        
## [28] openssl_2.0.2        generics_0.1.2       ggplot2_3.3.6       
## [31] movMF_0.2-7          ellipsis_0.3.2       umap_0.2.8.0        
## [34] nnet_7.3-17          cli_3.3.0            magrittr_2.0.3      
## [37] crayon_1.5.1         mclust_5.4.10        evaluate_0.15       
## [40] fansi_1.0.3          MASS_7.3-57          changepoint_2.2.3   
## [43] tools_4.2.1          lifecycle_1.0.1      stringr_1.4.0       
## [46] kernlab_0.9-31       munsell_0.5.0        ade4_1.7-19         
## [49] compiler_4.2.1       jquerylib_0.1.4      rlang_1.0.3         
## [52] grid_4.2.1           igraph_1.3.2         rmarkdown_2.14      
## [55] gtable_0.3.0         flexmix_2.3-18       R6_2.5.1            
## [58] gridExtra_2.3        zoo_1.8-10           knitr_1.39          
## [61] dplyr_1.0.9          fastmap_1.1.0        utf8_1.2.2          
## [64] KernSmooth_2.23-20   dendextend_1.15.2    modeltools_0.2-23   
## [67] stringi_1.7.6        Polychrome_1.5.1     Rcpp_1.0.8.3        
## [70] vctrs_0.4.1          png_0.1-7            scatterplot3d_0.3-41
## [73] tidyselect_1.1.2     xfun_0.31