coeff<- {ccfindR}R Documentation

Generics for coefficient matrix assignment

Description

Access and modify coefficient matrices

Usage

coeff(object) <- value

Arguments

object

Object of class scNMFSet

value

Coefficient matrix to be substituted

Value

Input object with updated coefficient matrices

Examples

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

[Package ccfindR version 1.12.0 Index]