predictLVs.gllvm | R Documentation |
Obtains predictions for latent variables from a fitted generalized linear latent variable model object. Currently works only for the variational approximation method.
## S3 method for class 'gllvm'
predictLVs(object, newX = NULL, newY = object$y, ...)
object |
an object of class 'gllvm'. |
newX |
A new data frame of environmental variables. If omitted, the original matrix of environmental variables is used. |
newY |
A new response data. Defaults to the dataset used for original model fit. |
... |
not used. |
Obtains predictions for latent variables from a fitted generalized linear latent variable model object.
A matrix containing requested predictor types.
David Warton, Jenni Niku <jenni.m.e.niku@jyu.fi>
# Load a dataset from the mvabund package
data(antTraits)
y <- as.matrix(antTraits$abund)
X <- scale(antTraits$env[, 1:3])
# Fit gllvm model
fit <- gllvm(y = y, X, family = poisson())
# fitted values
predLVs <- predictLVs.gllvm(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.