preds: Predictors Names

View source: R/extractors.R

predsR Documentation

Predictors Names

Description

Extracts the predictor names from a GPPM.

Usage

preds(gpModel)

Arguments

gpModel

object of class GPPM.

Value

The names of the predictors.

See Also

Other functions to extract from a GPPM: SE(), coef.GPPM(), confint.GPPM(), covFun(), fitted.GPPM(), getData(), getIntern(), logLik.GPPM(), maxNObs(), meanFun(), nObs(), nPars(), nPers(), nPreds(), parEsts(), pars(), vcov.GPPM()

Examples


data("demoLGCM")
lgcm <- gppm(
  "muI+muS*t", "varI+covIS*(t+t#)+varS*t*t#+(t==t#)*sigma",
  demoLGCM, "ID", "y"
)
myPreds <- preds(lgcm)


gppm documentation built on Aug. 25, 2025, 9:50 a.m.

Related to preds in gppm...