bptest.sarlm {spdep}R Documentation

Breusch-Pagan test for spatial models

Description

Performs the Breusch-Pagan test for heteroskedasticity on the least squares fit of the spatial models taking the spatial coefficients rho or lambda into account. This function is a copy of the bptest function in package "lmtest", modified to use objects returned by spatial simultaneous autoregressive models.

Usage

bptest.sarlm(object, studentize = TRUE)

Arguments

object An object of class "sarlm" from errorsarlm() or lagsarlm().
studentize logical. If set to TRUE Koenker's studentized version of the test statistic will be used.

Details

Asymptotically this corresponds to the test given by Anselin (1988), but is not exactly the same. The studentized version is more conservative and perhaps to be prefered. The residuals, and for spatial error models the RHS variables, are adjusted for the spatial coefficient, as suggested bt Luc Anselin (personal communication).

Value

A list with class "htest" containing the following components:

statistic the value of the test statistic.
p.value the p-value of the test.
parameter degrees of freedom.
method a character string indicating what type of test was performed.

Author(s)

Torsten Hothorn Torsten.Hothorn@rzmail.uni-erlangen.de and Achim Zeileis zeileis@ci.tuwien.ac.at, modified by Roger Bivand Roger.Bivand@nhh.no

References

T.S. Breusch & A.R. Pagan (1979), A Simple Test for Heteroscedasticity and Random Coefficient Variation. Econometrica 47, 1287–1294

W. Krämer & H. Sonnberger (1986), The Linear Regression Model under Test. Heidelberg: Physica.

L. Anselin (1988) Spatial econometrics: methods and models. Dordrecht: Kluwer, pp. 121–122.

See Also

errorsarlm, lagsarlm

Examples

data(columbus)
error.col <- errorsarlm(CRIME ~ HOVAL + INC, data=columbus,
 nb2listw(col.gal.nb))
bptest.sarlm(error.col)
bptest.sarlm(error.col, studentize=FALSE)

[Package spdep version 0.3-12 Index]