R/overlap_analysis.R
repOverlapAnalysis.Rd
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
)
Any distance matrix between pairs of repertoires. You can also pass your
output from repOverlap
.
A string that defines the type of analysis to perform.
A function to scale the data before passing it to the MDS algorithm.
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 vis
function.
A numerical value, t-SNE parameter, see immunr_tsne
.
A numerical value, t-SNE parameter, see immunr_tsne
.
A numerical value, DBscan epsylon parameter, see immunr_dbscan
.
The number of clusters to create, passed as k
to hcut or as centers
to kmeans.
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()