View source: R/deltaMethod-methods.R
coef.deltamethod | R Documentation |
Estimates
## S3 method for class 'deltamethod'
coef(object, ...)
object |
Object of class |
... |
additional arguments. |
Returns a vector of estimates.
Ivan Jacob Agaloos Pesigan
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.