View source: R/deltaMethod-methods.R
print.deltamethod | R Documentation |
deltamethod
Print Method for an Object of Class deltamethod
## S3 method for class 'deltamethod'
print(x, alpha = NULL, digits = 4, ...)
x |
Object of class |
alpha |
Numeric vector.
Significance level |
digits |
Digits to print. |
... |
additional arguments. |
Returns a matrix of coefficients, standard errors, test statistics, degrees of freedom (if z = FALSE), p-values, and confidence intervals.
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
)
print(out)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.