Learn R Programming

betaDelta (version 1.0.6)

coef.deltamethod: Estimates

Description

Estimates

Usage

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

Value

Returns a vector of estimates.

Arguments

object

Object of class deltamethod.

...

additional arguments.

Author

Ivan Jacob Agaloos Pesigan

Examples

Run this code
object <- glm(
  formula = vs ~ wt + disp,
  family = "binomial",
  data = mtcars
)
def <- list("exp(wt)", "exp(disp)")
out <- DeltaGeneric(
  object = object,
  def = def,
  alpha = 0.05
)
coef(out)

Run the code above in your browser using DataLab