coeff<- {ccfindR} | R Documentation |
Access and modify coefficient matrices
coeff(object) <- value
object |
Object of class |
value |
Coefficient matrix to be substituted |
Input object with updated coefficient matrices
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)