fitted.mim {mimR}R Documentation

Extract fitted values (parameter estimates)

Description

Extracts fitted values (parameter estimates) from a mim model.

Usage

## S3 method for class 'mim':
fitted(object, ...)
modelInfo(object,slot=NULL)

Arguments

object A mim model object
... Other argumens
slot A specific slot of the modelInfo list. If NULL, the entire list is returned.

Value

A data frame

Note

Before using mimR, make sure that the MIM program is runnning.

Author(s)

Søren Højsgaard, sorenh@agrsci.dk

References

David Edwards, An Introduction to Graphical Modelling, Second Edition, Springer Verlag, 2000

See Also

simulate

Examples

data(rats)
gmd.rats <- as.gmData(rats)
m2    <- mim("..", data=gmd.rats)
mf2   <- fit(m2)
parms <- fitted(mf2)
parms

[Package mimR version 2.0.5 Index]