coef.lcc: Extract Model Coefficients

View source: R/methods.R

coef.lccR Documentation

Extract Model Coefficients

Description

The fixed effects estimated and corresponding random effects estimates are obtained at subject levels less or equal to i. The resulting estimates are returned as a data frame, with rows corresponding to subject levels and columns to coefficients.

Usage

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

Arguments

object

an object inheriting from class lcc, representing a fitted longitudinal concordance correlation function.

...

optional arguments passed to the coef.lme function.

Details

See methods for nlme objects to get more details.

Value

Coefficients extracted from the model object.

Author(s)

Thiago de Paula Oliveira, thiago.paula.oliveira@alumni.usp.br

See Also

lcc, summary.lcc, lccPlot, vcov.lcc

Examples


## Not run: 
fm1<-lcc(data = hue, subject = "Fruit", resp = "H_mean",
         method = "Method", time = "Time", qf = 2, qr = 2)
coef(fm1)

## End(Not run)


lcc documentation built on Aug. 25, 2022, 5:08 p.m.

Related to coef.lcc in lcc...