print.deltamethod {betaDelta} | R Documentation |
Print Method for an Object of Class deltamethod
Description
Print Method for an Object of Class deltamethod
Usage
## S3 method for class 'deltamethod'
print(x, alpha = NULL, digits = 4, ...)
Arguments
x |
Object of class |
alpha |
Numeric vector.
Significance level |
digits |
Digits to print. |
... |
additional arguments. |
Value
Returns a matrix of coefficients, standard errors, test statistics, degrees of freedom (if z = FALSE), p-values, and confidence intervals.
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
)
print(out)
[Package betaDelta version 1.0.5 Index]