Description Usage Arguments Examples
Predict exponential family harmonium reconstruction on new data
| 1 2 3 | 
| object | EFH object | 
| newdata | matrix of the same exponential family as covariates in  | 
| type | the type of fitting required.
 | 
| ... | Additional arguments | 
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # construct a low rank matrices in the natural parameter space
rows = 100
cols = 10
set.seed(1)
loadings = rnorm(cols)
mat_np = outer(rnorm(rows), rnorm(cols))
mat_np_new = outer(rnorm(rows), loadings)
# generate a count matrices
mat = matrix(rpois(rows * cols, c(exp(mat_np))), rows, cols)
mat_new = matrix(rpois(rows * cols, c(exp(mat_np_new))), rows, cols)
modp = exponential_family_harmonium(mat, k = 9, family = "poisson", max_iters = 1000)
pred = predict(modp, mat_new, type = "response")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.