Learn R Programming

betaDelta (version 1.0.6)

summary.deltamethod: Summary Method for an Object of Class deltamethod

Description

Summary Method for an Object of Class deltamethod

Usage

# S3 method for deltamethod
summary(object, alpha = NULL, digits = 4, ...)

Value

Returns a matrix of standardized regression slopes, standard errors, test statistics, degrees of freedom, p-values, and confidence intervals.

Arguments

object

Object of class deltamethod.

alpha

Numeric vector. Significance level \(\alpha\). If alpha = NULL, use the argument alpha used in object.

digits

Digits to print.

...

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
)
summary(out)

Run the code above in your browser using DataLab