Description Usage Arguments Examples
Fit a lower dimentional representation of the exponential family matrix using generalized PCA
1 2 |
object |
generalized PCA object |
type |
the type of fitting required. |
... |
Additional arguments |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # construct a low rank matrix in the natural parameter space
rows = 100
cols = 10
set.seed(1)
mat_np = outer(rnorm(rows), rnorm(cols))
# generate a count matrix
mat = matrix(rpois(rows * cols, c(exp(mat_np))), rows, cols)
# run Poisson PCA on it
gpca = generalizedPCA(mat, k = 1, M = 4, family = "poisson")
# construct fitted expected value of counts matrix
fit = fitted(gpca, type = "response")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.