summary: Summary methods

summaryR Documentation

Summary methods

Description

Provides summary methods for objects.

Usage

## 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, ...)

Arguments

object

An object for which a summary is desired.

...

Further arguments passed to methods.

Value

The form of the value returned by summary() depends on the class of its argument.

Methods (by class)

  • 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.

See Also

EL, ELMT, ELT, GLM, LM, QGLM,

Examples

data("faithful")
fit <- el_mean(faithful, par = c(3.5, 70))
summary(fit)

data("mtcars")
fit2 <- el_lm(mpg ~ wt, data = mtcars)
summary(fit2)

melt documentation built on May 29, 2024, 10:21 a.m.