NMF-bioc {NMF} | R Documentation |
The package NMF provides an optional layer for working with common objects defined in the Bioconductor platform.
It provides:
signature(object = "NMF")
:
returns the metagenes matrix according to the model defined in object
.
It is a simple alias to method basis
.
signature(object = "NMF", value = "matrix")
:
sets the metagenes matrix in object
, and returns the updated object.
It is a simple alias to method basis<-
.
signature(object = "NMF")
:
returns the metaprofiles matrix according to the model defined in object
.
It is a simple alias to method coef
.
signature(object = "NMF", value = "matrix")
:
sets the metaprofiles matrix in object
, and returns the updated object.
It is a simple alias to method coef<-
.
signature(object = "NMF")
:
returns the number of metagenes use in NMF model object
.
It's an alias to nbasis
.
NMF, NMF-utils