Learn R Programming

augSIMEX (version 3.7.4)

coef.augSIMEX: Extract the coefficients from the fitted augSIMEX object

Description

This function returns the vector of fitted coefficients from a fitted augSIMEX object

Usage

## S3 method for class 'augSIMEX'

# S3 method for augSIMEX coef(object, ...)

Arguments

object

the ``augSIMEX" object gotten from augSIMEX function.

...

other arguments to pass to the function.

See Also

coef

Examples

Run this code
# NOT RUN {
data(ToyUni)
example <- augSIMEX(mainformula = Y ~ Xstar + Zstar + W, family = binomial(link = logit),
  mismodel = pi|qi ~ W, 
  meformula = Xstar ~ X + Z + W,
  data = ToyUni$Main,validationdata = ToyUni$Validation, subset = NULL,
  err.var = "Xstar", mis.var = "Zstar", err.true = "X", mis.true = "Z", 
  err.mat = NULL,
  lambda = NULL, M = 5, B = 2, nBoot = 2, extrapolation="quadratic")
coef(example)
# }

Run the code above in your browser using DataLab