summary {ILSE}R Documentation

Summarizing the inference information for ILSE or FIML methods

Description

summary method for class "ilse" or "fiml".

Usage

  summary(object, Nbt=20)

  ## S3 method for class 'ilse'
summary(object, Nbt=20)

  ## S3 method for class 'fiml'
summary(object, Nbt=20)

  ##
  Fitted.values(object)
  ##
  Residuals(object)

Arguments

object

an object of class "ilse".

Nbt

an positive integer, the repeated times of bootstrap to eatimate covariance matrix of regression coefficient.

Value

The function summary.ilse computes and returns a named matrix of summary statistics of the fitted linear model given in object by ILSE or FIML methods. The function Fitted.values return a vector, fitted repsonse vlaues. The function Residuals return a vector, residuals.

See Also

summary.lm fitted.vlaues residuals

Examples

# example one
data(nhanes)
NAlm <- ilse(age~., data=nhanes)
summary(NAlm, Nbt=5)

fimllm <- fimlreg(age~., data=nhanes)
summary(fimllm, Nbt = 5)

[Package ILSE version 1.1.7 Index]