View source: R/generic_methods.R
show.cacomp | R Documentation |
Provides more user friendly printing of cacomp objects.
show.cacomp(object)
## S4 method for signature 'cacomp'
show(object)
object |
cacomp object to print |
prints summary information about cacomp object.
# Simulate scRNAseq data.
cnts <- data.frame(cell_1 = rpois(10, 5),
cell_2 = rpois(10, 10),
cell_3 = rpois(10, 20))
rownames(cnts) <- paste0("gene_", 1:10)
cnts <- as.matrix(cnts)
# Run correspondence analysis.
ca <- cacomp(obj = cnts, princ_coords = 3, top = 5)
ca
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.