
This function implements the nonparametric test of Diblasi97;textualskedastic for testing for heteroskedasticity in a linear regression model.
diblasi_bowman(
mainlm,
distmethod = c("moment.match", "bootstrap"),
H = 0.08,
ignorecov = TRUE,
B = 500L,
seed = 1234,
statonly = FALSE
)
An object of class
"htest"
. If object is
not assigned, its attributes are displayed in the console as a
Either an object of class
"lm"
(e.g., generated by lm
), or
a list of two objects: a response vector and a design matrix. The objects
are assumed to be in that order, unless they are given the names
"X"
and "y"
to distinguish them. The design matrix passed
in a list must begin with a column of ones if an intercept is to be
included in the linear model. The design matrix passed in a list should
not contain factors, as all columns are treated 'as is'. For tests that
use ordinary least squares residuals, one can also pass a vector of
residuals in the list, which should either be the third object or be
named "e"
.
A character specifying the method by which to estimate
the "moment.match"
or "bootstrap"
.
A hyperparameter denoting the bandwidth matrix in the kernel
function used for weights in nonparametric smoothing. If a double of
length 1 (the default), H
is set to H
is set to H
is a H
results in an error.
A logical. If TRUE
(the default), the
variance-covariance matrix of FALSE
).
An integer specifying the number of nonparametric bootstrap
replications to be used, if distmethod="bootstrap"
.
An integer specifying a seed to pass to
set.seed
for random number generation. This allows
reproducibility of bootstrap results. The value NA
results in not setting a seed.
A logical. If TRUE
, only the test statistic value
is returned, instead of an object of class
"htest"
. Defaults to FALSE
.
The test entails undertaking a transformation of the OLS residuals
mtcars_lm <- lm(mpg ~ wt + qsec + am, data = mtcars)
diblasi_bowman(mtcars_lm)
diblasi_bowman(mtcars_lm, ignorecov = FALSE)
diblasi_bowman(mtcars_lm, distmethod = "bootstrap")
Run the code above in your browser using DataLab