nmfkc is an R package that extends Non-negative Matrix Factorization (NMF) by incorporating covariates using kernel methods. It supports advanced features like rank selection via cross-validation, time-series modeling (NMF-VAR), supervised classification (NMF-LAB), feed-forward + feedback structural modeling with equilibrium interpretation (NMF-FFB; formerly NMF-SEM), and mixed-effects modeling with random effects (NMF-RE).
Installation
# Stable version (CRAN)
install.packages("nmfkc")
# Development version (GitHub, may be unstable)
# install.packages("remotes")
remotes::install_github("ksatohds/nmfkc@develop")
library(nmfkc)Help and Usage
browseVignettes("nmfkc")
ls("package:nmfkc")
?nmfkcCitation
citation("nmfkc")Quick Example
library(nmfkc)
# Decompose a matrix Y into basis X and coefficient B with rank = 2
X_true <- cbind(c(1, 0, 1), c(0, 1, 0))
B_true <- cbind(c(1, 0), c(0, 1), c(1, 1))
Y <- X_true %*% B_true
res <- nmfkc(Y, rank = 2, epsilon = 1e-6)
plot(res) # Convergence plot
summary(res) # Summary statisticsSee browseVignettes("nmfkc") for detailed examples covering rank selection, kernel NMF, time-series, classification, NMF-FFB, and NMF-RE.
Comparison with Standard NMF
| Feature | Standard NMF | nmfkc |
|---|---|---|
| Handles covariates | No | Yes (Linear / Kernel) |
| Feed-forward + feedback modeling | No | Yes (NMF-FFB) |
| Mixed-effects / Random effects | No | Yes (NMF-RE) |
| Classification | No | Yes (NMF-LAB) |
| Time series modeling | No | Yes (NMF-VAR) |
| Nonlinearity | No | Yes (Kernel) |
| Clustering support | Limited | Yes (Hard/Soft) |
| Rank selection / CV | Limited (ad hoc) | Yes (Element-wise CV, Column-wise CV) |
Statistical Model
The nmfkc package builds upon the standard NMF framework by incorporating external information (covariates):
\[Y(P,N) \approx X(P,Q) \times C(Q,R) \times A(R,N)\]
- \(Y\): Observation matrix (\(P\) features × \(N\) samples)
- \(A\): Covariate matrix (\(R\) covariates × \(N\) samples); defaults to identity (standard NMF)
- \(X\): Basis matrix — learned latent patterns
- \(C\): Parameter matrix — links covariates to latent structure
Extensions
- NMF-RE: Adds unit-specific random effects \(U\): \(Y = X(\Theta A + U) + \mathcal{E}\), estimated via ridge-type BLUP with wild bootstrap inference.
- NMF-FFB (formerly NMF-SEM): Models feed-forward + feedback structure \(Y_1 \approx X(\Theta_1 Y_1 + \Theta_2 Y_2)\), with equilibrium mapping \((I - X\Theta_1)^{-1} X\Theta_2\).
Main Functions
| Function | Description |
|---|---|
nmfkc() |
Core NMF with covariates (\(Y \approx XCA\)); supports kernel matrices and formula interface |
nmfre() / nmfre.inference()
|
NMF with Random Effects + wild bootstrap inference |
nmf.ffb() / nmf.ffb.inference()
|
NMF Feed-Forward + Feedback model (formerly nmf.sem*; those aliases were removed in 0.9.8): basis from nmfkc(), then FIML with an exclusion restriction, L1 path and BIC selection of the feedback (method = "fiml", default; legacy method = "mu") + parametric-bootstrap calibration of the LR test and coefficient intervals |
nmf.rrr() / nmf.rrr.inference()
|
Non-negative reduced-rank regression + inference (formerly nmfae*; those aliases were removed in 0.9.8) |
nmfkc.rank() |
Rank selection via elbow, cross-validation, ECV, and CPCC |
nmfkc.inference() |
Sandwich SE and wild bootstrap p-values for nmfkc
|
nmfkc.DOT() / nmfkc.ar.DOT() / nmf.ffb.DOT() / nmf.rrr.DOT()
|
Graphviz path diagrams; render with plot()
|
S3 methods coef(), fitted(), residuals(), plot(), summary(), predict() are available for all model classes. See ?nmfkc or browseVignettes("nmfkc") for the full function list.
A note on numerical precision in inference
Under the non-negativity constraint, a coefficient whose true value is zero is approached from above, and multiplicative updates approach it slowly. How far down such a coefficient has travelled therefore depends on the convergence tolerance, and any quantity that compares it with zero — a bootstrap standard error, a percentile interval, a support rate, a p-value — inherits that dependence. A loose tolerance stops while the coefficient is still spuriously positive, which over-declares significance.
The inference functions that re-fit the model on each bootstrap replicate therefore converge much more tightly than an ordinary fit:
| Function | Setting | Default |
|---|---|---|
nmfkc.inference(method = "refit") |
refit.epsilon, refit.maxit
|
1e-8, 1e5
|
nmf.ffb.inference() |
epsilon, maxit
|
1e-8, 1e5
|
The number of bootstrap replicates is wild.B = 500 throughout, except nmf.ffb.inference(), whose B stays at 1000 — the value its published analysis used, so those results reproduce out of the box. Since that function re-fits on every replicate, its cost is linear in B.
Two consequences worth knowing:
-
Fit the model tightly as well.
nmfkc()defaults toepsilon = 1e-4, which is fine for reconstruction but leaves near-zero coefficients well short of the boundary. For inference, fit withepsilon = 1e-8(and amaxitto match); a multistart (nstart) also helps, since boundary problems have flatter optima. -
Near-threshold entries stay tolerance-sensitive even at
1e-8. Treat a coefficient sitting near the significance boundary as provisional, and check that the conclusion survives a tighter tolerance before relying on it.
method = "onestep" and the other inference functions (nmfre.inference(), nmf.rrr.inference(), nmf.gmm.inference()) linearize instead of re-fitting and are not affected.
References
- Satoh, K. (2026). Applying Non-negative Matrix Factorization with Covariates to the Longitudinal Data as Growth Curve Model. American Journal of Mathematical and Management Sciences. In press. Preprint arXiv:2403.05359. https://arxiv.org/abs/2403.05359
- Satoh, K. (2025). Applying non-negative Matrix Factorization with Covariates to Multivariate Time Series Data as a Vector Autoregression Model. Japanese Journal of Statistics and Data Science. https://doi.org/10.1007/s42081-025-00314-0
- Satoh, K. (2026). Applying non-negative matrix factorization with covariates to label matrix for classification. Japanese Journal of Statistics and Data Science. https://doi.org/10.1007/s42081-026-00349-x
- Satoh, K. (2025). Applying non-negative matrix factorization with covariates to structural equation modeling for blind input-output analysis. arXiv:2512.18250. https://arxiv.org/abs/2512.18250
- Satoh, K. (2026). Wild Bootstrap Inference for Non-Negative Matrix Factorization with Random Effects. arXiv:2603.01468. https://arxiv.org/abs/2603.01468