Learn R Programming

melt (version 1.11.3)

summary: Summary methods

Description

Provides summary methods for objects.

Usage

# S4 method for EL
summary(object, ...)

# S4 method for ELMT summary(object, ...)

# S4 method for ELT summary(object, ...)

# S4 method for GLM summary(object, ...)

# S4 method for LM summary(object, ...)

# S4 method for QGLM summary(object, ...)

Value

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

Arguments

object

An object for which a summary is desired.

...

Further arguments passed to methods.

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

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

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

Run the code above in your browser using DataLab