predict.SMSN {skewlmm} | R Documentation |
Prediction of future observations from an smsn.lmm object
Description
Predicted values are obtained through conditional expectation. For details, see Schumacher, Lachos, and Matos (2021).
Usage
## S3 method for class 'SMSN'
predict(object, newData, ...)
Arguments
object |
An object inheriting from class |
newData |
A data frame for which response variable should be predicted, including covariates, groupVar and possibly timeVar. If missing or |
... |
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
Examples
dat1 = nlme::Orthodont
fm1 = smsn.lmm(distance ~ age+Sex, data=subset(dat1, age<14), groupVar="Subject")
predict(fm1, subset(dat1, age==14))