Skip to contents

Convert cacomp object to list.

Usage

# S4 method for cacomp
as.list(x)

Arguments

x

A cacomp object.

Value

A cacomp object.

Examples


# Simulate counts
cnts <- mapply(function(x){rpois(n = 500, lambda = x)},
               x = sample(1:100, 50, replace = TRUE))
rownames(cnts) <- paste0("gene_", 1:nrow(cnts))
colnames(cnts) <- paste0("cell_", 1:ncol(cnts))

# Run correspondence analysis
ca <- cacomp(obj = cnts, princ_coords = 3)
#> Warning: 
#> Parameter top is >nrow(obj) and therefore ignored.
ca_list <- as.list(ca)