Description Usage Arguments Value Examples
Predict values from an 'em.glm' model.
1 2  | 
object | 
 An em.glm fit object.  | 
x | 
 An n-by-p design matrix.  | 
y | 
 A vector of observation of length n.  | 
weight | 
 A n length vector of observation weight terms. This is currently designed to be either the exposure for a Poisson model or the number of trials for a Logistic model.  | 
type | 
 Prediction type. Currently can be 'count' for the weighted prediction, 'rate' for the expected rate or 'rho' for the linear predictor.  | 
... | 
 optionally more fitted model objects.  | 
N-length vector of predicted terms.
1 2 3 4 5 6  | x <- model.matrix(~ factor(wool) + factor(tension), warpbreaks)
y <- warpbreaks$breaks
m <- em.glm(x = x, y = y, K = 2, b.init = "random")
predict(m, x = x, y = y, weight = c(1))
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.