| summary | R Documentation | 
Provides summary methods for objects.
## S4 method for signature 'EL'
summary(object, ...)
## S4 method for signature 'ELMT'
summary(object, ...)
## S4 method for signature 'ELT'
summary(object, ...)
## S4 method for signature 'GLM'
summary(object, ...)
## S4 method for signature 'LM'
summary(object, ...)
## S4 method for signature 'QGLM'
summary(object, ...)
| object | An object for which a summary is desired. | 
| ... | Further arguments passed to methods. | 
The form of the value returned by summary() depends on the class of
its argument.
summary(EL): Summarizes the test results of the specified parameters.
summary(ELMT): Summarizes the multiple testing results.
summary(ELT): Summarizes the hypothesis test results.
summary(GLM): Summarizes the results of the overall model test and the
significance tests for coefficients. The dispersion parameter is extracted
for display.
summary(LM): Summarizes the results of the overall model test and the
significance tests for coefficients.
summary(QGLM): Summarizes the results of the overall model test and the
significance tests for coefficients. The estimated dispersion parameter is
extracted for display.
EL, ELMT, ELT, GLM, LM, QGLM,
data("faithful")
fit <- el_mean(faithful, par = c(3.5, 70))
summary(fit)
data("mtcars")
fit2 <- el_lm(mpg ~ wt, data = mtcars)
summary(fit2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.