Exam2.B.1 {StroupGLMM}R Documentation

Example 2.B.1 from Generalized Linear Mixed Models: Modern Concepts, Methods and Applications by Walter W. Stroup(p-53)

Description

Exam2.B.1 is used to visualize the effect of lm model statement with Gaussian data and their design matrix

Author(s)

  1. Muhammad Yaseen (myaseen208@gmail.com)

  2. Adeela Munawar (adeela.uaf@gmail.com)

References

  1. Stroup, W. W. (2012). Generalized Linear Mixed Models: Modern Concepts, Methods and Applications. CRC Press.

See Also

Table1.1

Examples

#-----------------------------------------------------------------------------------
## Linear Model  discussed in Example 2.B.1 using simple regression data of Table1.1
#-----------------------------------------------------------------------------------
data(Table1.1)
Exam2.B.1.lm1 <-
  lm(
      formula     = y~x
    , data        = Table1.1
    #  , subset
    #  , weights
    #  , na.action
    , method      = "qr"
    , model       = TRUE
    #  , x           = FALSE
    #  , y           = FALSE
    , qr          = TRUE
    , singular.ok = TRUE
    , contrasts   = NULL
    #  , offset
    #  , ...
  )
summary(Exam2.B.1.lm1)
DesignMatrix.lm1 <-
  model.matrix (
    object = Exam2.B.1.lm1
  )
DesignMatrix.lm1

[Package StroupGLMM version 0.1.0 Index]