| nmf.rrr.rename | R Documentation |
Assigns user-specified names to the decoder (X1 columns) and encoder
(X2 rows) bases of an nmfae object. The names propagate to
\Theta, the coefficients table, and all downstream displays
such as summary, nmfae.DOT, and nmfae.heatmap.
nmf.rrr.rename(x, X1.colnames = NULL, X2.rownames = NULL)
x |
An object of class |
X1.colnames |
Character vector of length |
X2.rownames |
Character vector of length |
A modified copy of x with updated names.
nmfae
set.seed(1)
Y <- matrix(runif(15), nrow = 3)
res <- nmf.rrr(Y, rank1 = 2, rank2 = 2)
res <- nmf.rrr.rename(res,
X1.colnames = c("Resp1", "Resp2"),
X2.rownames = c("Cov1", "Cov2"))
summary(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.