d_NMF | R Documentation |
Perform NMF decomposition using NMF::nmf
d_NMF(
x,
x.test = NULL,
k = 2,
method = "brunet",
nrun = 30,
scale = TRUE,
center = FALSE,
verbose = TRUE,
...
)
x |
Input data |
x.test |
Optional test set. Will be projected on to NMF basis |
k |
Integer vector of length 1 or greater. Rank of decomposition |
method |
NMF method. Defaults to "brunet". See |
nrun |
Integer: Number of runs to perform |
scale |
Logical: If TRUE, scale input data before projecting |
center |
Logical: If TRUE, also center input data if |
verbose |
Logical: If TRUE, print messages to screen. Default = TRUE |
... |
Additional parameters to be passed to |
Project scaled variables to NMF bases. Input must be n by p, where n represents number of cases, and p represents number of features. NMF will be applied to the transpose of the n x p matrix.
rtDecom
object
E.D. Gennatas
Other Decomposition:
d_H2OAE()
,
d_H2OGLRM()
,
d_ICA()
,
d_Isomap()
,
d_KPCA()
,
d_LLE()
,
d_MDS()
,
d_PCA()
,
d_SPCA()
,
d_SVD()
,
d_TSNE()
,
d_UMAP()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.