coef.GPPM: Point Estimates

View source: R/extractors.R

coef.GPPMR Documentation

Point Estimates

Description

Extracts point estimates for all parameters from a fitted GPPM.

Usage

## S3 method for class 'GPPM'
coef(object, ...)

Arguments

object

object of class GPPM. Must be fitted, that is, a result from fit.GPPM.

...

additional arguments (currently not used).

Value

Point estimates for all parameters as a named numeric vector.

See Also

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

Examples


data("demoLGCM")
lgcm <- gppm(
  "muI+muS*t", "varI+covIS*(t+t#)+varS*t*t#+(t==t#)*sigma",
  demoLGCM, "ID", "y"
)
lgcmFit <- fit(lgcm)
paraEsts <- coef(lgcmFit)


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

Related to coef.GPPM in gppm...