summary: Summarizing the inference information for ILSE or FIML...

Description Usage Arguments Value See Also Examples

View source: R/summary.R

Description

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

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
  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

1
2
3
4
5
6
7
# example one
data(nhanes)
NAlm <- ilse(age~., data=nhanes)
summary(NAlm, Nbt=5)

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

ILSE documentation built on Jan. 31, 2022, 9:06 a.m.