coef.deltamethod {betaDelta} | R Documentation |
Estimates
Description
Estimates
Usage
## S3 method for class 'deltamethod'
coef(object, ...)
Arguments
object |
Object of class |
... |
additional arguments. |
Value
Returns a vector of estimates.
Author(s)
Ivan Jacob Agaloos Pesigan
Examples
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)
[Package betaDelta version 1.0.5 Index]