View source: R/overlap_analysis.R
repOverlapAnalysis | R Documentation |
The repOverlapAnalysis
function contains advanced data
analysis methods. You can use several clustering and dimensionality reduction
techniques in order to investigate further the difference between repertoires
provided.
To cluster a subset of similar data with repOverlapAnalysis
you can
perform hierarchical clustering, k-means or dbscan ('hclust', 'kmeans', 'dbscan'
respectively).
To reduce dimensions, for example, to select features for subsequent analysis, you can execute the multidimensional scaling or t-sne algorithms ('mds' and 'tsne' respectively).
repOverlapAnalysis(
.data,
.method = ("hclust"),
.scale = default_scale_fun,
.raw = TRUE,
.perp = 1,
.theta = 0.1,
.eps = 0.01,
.k = 2
)
.data |
Any distance matrix between pairs of repertoires. You can also pass your
output from |
.method |
A string that defines the type of analysis to perform. |
.scale |
A function to scale the data before passing it to the MDS algorithm. |
.raw |
A logical value. Set TRUE if you want to receive raw output of clustering
or dimensionality reduction function of choice. Set FALSE if you want to receive
processed output that can be subjected to visualisation with |
.perp |
A numerical value, t-SNE parameter, see |
.theta |
A numerical value, t-SNE parameter, see |
.eps |
A numerical value, DBscan epsylon parameter, see |
.k |
The number of clusters to create, passed as |
Depends on the last element in the .method
string. See immunr_tsne for more info.
data(immdata)
ov <- repOverlap(immdata$data)
repOverlapAnalysis(ov, "mds+hclust") %>% vis()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.