getD: getD

Description Usage Arguments Author(s) References Examples

Description

Computes the Hessian matrix D; see Section 8.6 of Kloke and McKean (2014). Currently the only option is the identity link; i.e., D is the design matrix.

Usage

1
getD(xmat, center, beta, geemod = "LM")

Arguments

xmat
center
beta
geemod

Author(s)

Joseph W. McKean

References

Kloke and McKean (2014), Nonparametrics Using R, Boca Raton: Chapman-Hall.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (xmat, center, beta, geemod = "LM") 
{
    if (geemod == "LM") {
        D <- xmat
    }
    return(D)
  }

kloke/rbgee documentation built on May 20, 2019, 12:34 p.m.