| summary.nmfre | R Documentation |
nmfreDisplays a concise summary of an NMF-RE model fit, including dimensions, convergence, variance components, and a coefficient table following standard R regression output conventions.
## S3 method for class 'nmfre'
summary(object, ci.show = FALSE, by = c("covariate", "basis"), ...)
object |
An object of class |
ci.show |
Logical. If |
by |
Grouping order of the coefficient rows: |
... |
Additional arguments (currently unused). |
The input object, invisibly.
nmfre, nmfre.inference
Y <- matrix(cars$dist, nrow = 1)
A <- rbind(intercept = 1, speed = cars$speed)
res <- nmfre(Y, A, rank = 1, maxit = 5000)
summary(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.