NMF {fdm2id} | R Documentation |
Non-negative Matrix Factorization
Description
Return the NMF decomposition.
Usage
NMF(x, rank = 2, nstart = 10, ...)
Arguments
x |
A numeric dataset (data.frame or matrix). |
rank |
Specification of the factorization rank. |
nstart |
How many random sets should be chosen? |
... |
Other parameters. |
See Also
Examples
## Not run:
install.packages ("BiocManager")
BiocManager::install ("Biobase")
install.packages ("NMF")
require (datasets)
data (iris)
NMF (iris [, -5])
## End(Not run)
[Package fdm2id version 0.9.9 Index]