anova.elliptical: Analysis of Deviance for Elliptical Regression Models

Description Usage Arguments Value References See Also Examples

View source: R/anova.elliptical.R

Description

Compute an analysis of deviance table for the fitted elliptical regression model.

Usage

1
2
## S3 method for class 'elliptical'
anova(object, ..., dispersion = NULL, test = c("Chisq"))

Arguments

object

an object with the result of the fitted elliptical regression model.

...

arguments to be used to form the default control argument if it is not supplied directly.

dispersion

the dispersion parameter for the fitting family. By default it is obtained from the object.

test

a character string indicating the hypothesis test considered. Only chi-square test is implemented at moment.

Value

Return an object of class “anova”. This object contain the analysis of deviance table.

References

Cysneiros, F. J. A., Paula, G. A., and Galea, M. (2007). Heteroscedastic symmetrical linear models. Statistics & probability letters, 77(11), 1084-1090. doi: 10.1016/j.spl.2007.01.012

See Also

elliptical, summary.elliptical, family.elliptical

Examples

1
2
3
4
5
6
7
8
9
data(luzdat)
y <- luzdat$y
x1 <- luzdat$x1 ; x1 <- factor(x1) ; x1 <- C(x1,treatment)
x2 <- luzdat$x2
x3 <- (luzdat$x2)^2
luz <- data.frame(y,x1,x2,x3)
elliptical.fitt <- elliptical(y ~ x1+x2+x3, family = Student(df=5),
data=luz)
anova(elliptical.fitt, test = "Chisq")

gwer documentation built on April 28, 2021, 9:07 a.m.

Related to anova.elliptical in gwer...