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 gllvm
predictLVs(object, newX = NULL, newY = object$y, ...)

Arguments

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.

Value

A matrix containing requested predictor types.

Details

Obtains predictions for latent variables from a fitted generalized linear latent variable model object.

Author

David Warton, Jenni Niku <jenni.m.e.niku@jyu.fi>

Examples

 # \donttest{
# 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)
#> Error in eval(object$call): object 'X' not found
# }