predict.SMN {skewlmm}R Documentation

Prediction of future observations from an smn.lmm object

Description

Predicted values are obtained through conditional expectation. For details, see Schumacher, Lachos, and Matos (2021).

Usage

## S3 method for class 'SMN'
predict(object, newData, ...)

Arguments

object

An object inheriting from class SMN, representing a fitted scale mixture normal linear mixed model.

newData

A data frame for which response variable should be predicted, including covariates, groupVar and possibly timeVar. If missing or NULL, fitted values are returned.

...

Additional arguments.

Value

A data frame with covariates, groupVar and ypred, where ypred contains the predicted values from the response variable.

Author(s)

Fernanda L. Schumacher, Larissa A. Matos and Victor H. Lachos

References

Schumacher, F. L., Lachos, V. H., and Matos, L. A. (2021). Scale mixture of skew-normal linear mixed models with within-subject serial dependence. Statistics in Medicine 40(7), 1790-1810.

See Also

smn.lmm, fitted.SMN

Examples

dat1 = nlme::Orthodont
fm1 = smn.lmm(distance ~ age+Sex, data=subset(dat1, age<14), groupVar="Subject")
predict(fm1, subset(dat1, age==14))

[Package skewlmm version 1.1.0 Index]