| print.summary.nmfkc | R Documentation |
summary.nmfkc objectsPrints a formatted summary of an nmfkc model fit.
## S3 method for class 'summary.nmfkc'
print(x, digits = max(3L, getOption("digits") - 3L), ...)
x |
An object of class |
digits |
Minimum number of significant digits to be used. |
... |
Additional arguments (currently unused). |
Called for its side effect (printing). Returns x invisibly.
Y <- matrix(cars$dist, nrow = 1)
A <- rbind(1, cars$speed)
result <- nmfkc(Y, A, rank = 1)
print(summary(result))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.