Learn R Programming

immunarch (version 0.6.4)

vis.immunr_hclust: Visualisation of hierarchical clustering

Description

Visualisation of the results of hierarchical clustering. For other clustering visualisations see vis.immunr_kmeans.

Usage

# S3 method for immunr_hclust
vis(
  .data,
  .rect = FALSE,
  .plot = c("clust", "best"),
  .return.grob = FALSE,
  ...
)

Arguments

.data

Clustering results from repOverlapAnalysis or geneUsageAnalysis.

.rect

Passed to fviz_dend - whether to add a rectangle around groups.

.plot

A character vector of length one or two specifying which plots to visualise. If "clust" then plot only the clustering. If "best" then plot the number of optimal clusters. If both then plot both.

.return.grob

If TRUE then return grob instead of plot.

...

Not used here.

Value

Ggplot2 objects inside the gridExtra container.

See Also

vis, repOverlapAnalysis, geneUsageAnalysis

Examples

Run this code
# NOT RUN {
data(immdata)
ov <- repOverlap(immdata$data)
repOverlapAnalysis(ov, "mds+hclust") %>% vis()

# }

Run the code above in your browser using DataLab