coeff: Coefficient matrices in an Object

Description Usage Arguments Details Value Examples

Description

Retrieve or set the coefficient matrices from factorization in an object

Usage

1
coeff(object)

Arguments

object

Object of class scNMFSet.

Details

After factorization, coefficient matrices H corresponding to each rank value are stored as elements of a list, which is in slot coeff of object of class scNMFSet. coeff(object) will return the list of matrices. coeff(object) <- value can be used to modify it.

Value

Either NULL or a list of same length as ranks(object), whose elements are coefficient matrices derived from factorization under each rank value.

Examples

1
2
3
s <- scNMFSet(count=matrix(rpois(n=12,lambda=3),4,3))
s <- vb_factorize(s,ranks=seq(2,4))
coeff(s)[[1]]

ccfindR documentation built on Nov. 8, 2020, 5:12 p.m.